View Single Post
  #7  
Old 03-20-2009, 12:48 AM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: Featured Products

There is should be enough place to display 5 products
change in your customer/main/featured.tpl
Code:
{include file="customer/main/products.tpl" products=$f_products featured="Y"}
to
Code:
{include file="customer/main/products.tpl" products=$f_products featured="Y" per_row=5}

and in your customer/main/products_t.tpl
Code:
{list2matrix assign="products_matrix" assign_width="cell_width" list=$products row_length=$config.Appearance.products_per_row}
to
Code:
{if $per_row} {assign var=row_length value=$per_row} {else} {assign var=row_length value=$config.Appearance.products_per_row} {/if} {list2matrix assign="products_matrix" assign_width="cell_width" list=$products row_length=$row_length}
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote