hapkom![]() 2006-07-05 13:55 | How can i make text link for details page. Like clicking on title ot picture but text link like "read more"? |
Claps2006-07-05 15:16 | Well, depends on what version of QC you have, and what plugins you have installed and active (especially productsAttributes and productsInRow which affects the way the products are displayed on screen). Bassically it's all about adding a <a href="link">Details</a> to .tpl files,depending on your configuration. |
hapkom![]() 2006-07-05 15:20 | i have last version of QC. and no plugins |
Claps2006-07-05 15:29 | Then open /templates/products_list.tpl and around line 16 in section begining with <!-- BEGIN LIST_LIST --> you will find a line containing |
farabi![]() 2007-05-29 21:47 | I have the same question but in my situation I am using a plugin= ProductInRow. Can someone plz tell me how to implement this solution. |
merci![]() 2007-05-30 14:53 | farabi - then open templates/productsInRow.tpl and find:
<h4>$aList[sDescriptionShort]</h4>
below that line add this line which Claps wrote -
<a href="?p=productsMore&iProduct=$aList[iProduct]&sName=$aList[sNameUrl]" title="$aList[sName]">Details</a><br />
|
farabi![]() 2007-05-30 23:11 | merci, thanks for your answer, |