Quote:
Originally Posted by Dowhatchalike
/bump for hoping someone can figure out how to display the thumbnails horizontally, I haven't had any luck 
|
Hi,
I think the solution is to change the location of <tr> and </tr>. So instead of <tr> after {foreach} you should place it before {foreach}. This is the code I use in related_products.tpl and it works for me:
<tr>
{foreach from=$product_links item=p}
<td><a href="product.php?productid={$p.productid}&cat={$c at}&&bestseller=Y">{include file="product_thumbnail.tpl" productid=$p.productid product=$bestseller.product tmbn_url=$bestseller.tmbn_url}<br />{$p.product|amp}</a></td>
{/foreach}
</tr>
Good luck.