View Single Post
  #66  
Old 11-12-2004, 11:53 AM
 
AJ-UKRS AJ-UKRS is offline
 

Advanced Member
  
Join Date: Jan 2004
Posts: 92
 

Default

and if you want to just have a bullet point image with the link, simply edit related_products.tpl in /xcart/skin1/modules/Upselling_Products/ to be the following:

Code:
{* $Id: related_products.tpl,v 1.7 2003/11/26 10:27:05 mAKI Exp $ *} {if $product_links ne ""} {capture name=dialog} <table border="0" cellpadding="2" cellspacing="2" width="100%" style="border-collapse: collapse" bordercolor="#111111"> {section name=cat_num loop=$product_links} <tr> <td width="1%">{include file="product_thumbnail.tpl" productid=$product_links[cat_num].productid image_x=30}</td> <td width="99%">{$product_links[cat_num].product|escape}</td> </tr> {/section} </table> {/capture} {include file="dialog.tpl" title=$lng.lbl_related_products content=$smarty.capture.dialog extra="width=100%"} {/if}
Reply With Quote