I'm getting close. I figured out that when choosing multi-column, x-cart uses products_t.tpl instead of products.tpl. So, how do you customize the look of products in the Featured Products when you have multi-columns? Does x-cart not use featured.tpl when using multi-column layout?
Below is my featured.tpl
Quote:
{* $Id: featured.tpl,v 1.14.8.1 2005/04/04 13:21:51 max Exp $ *}
{capture name=dialog}
{if $f_products ne ""}
{if $total_pages gt 2}
<BR>
{ include file="customer/main/navigation.tpl" }
{/if}
{include file="customer/main/products_featured.tpl" products=$f_products featured="Y"}
{if $total_pages gt 2}
<BR>
{ include file="customer/main/navigation.tpl" }
{/if}
{else}
{$lng.txt_no_featured}
{/if}
{/capture}
{include file="dialog.tpl" title=$lng.lbl_featured_products content=$smarty.capture.dialog extra="width=100%"}
|