Here is what I did to make the product name a link to the product description.
You will need to modify your home.html file. First look in you layoutx folder to see if it is there. If not, you will need to make a copy of home.html from your content folder and save this in your layoutx folder.
Find the line of code as follows:
Quote:
|
<td height="20" class="item" align="center" valign="middle"><a href="add_cart.asp?quick=1&item_id=[catalogid]"><u>[category_buyitlink]</u></a></td>
|
Replace is with this code:
Quote:
<td colspan="2" class="item" align="center">
<a title=[name] href="product.asp?itemid=[catalogid]">[name]</a></td>
|
This also can be done on the category_0.html page to make the product name a link there, too. Search for ITEM_TEMPLATE_0. The same code replacement done above can be done here.