View Single Post
  #2  
Old 07-25-2009, 06:00 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Related Products

In skin1/modules/Upselling_Products/related_products.tpl inside the foreach after
Code:
<td><a href="product.php?productid={$p.productid}"{if $config.Upselling_Products.upselling_new_window eq 'Y'} target="_blank"{/if}>{$p.product|amp}</a></td>
add
Code:
<td>{$p.descr|truncate:200:"...":true}</td>


If you want this for upselling products the code to add will be
Code:
<td>$product_links[cat_num].descr|truncate:200:"...":true}</td>

See if that works for you
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote