View Single Post
  #2  
Old 10-15-2005, 09:28 PM
  kpayne's Avatar 
kpayne kpayne is offline
 

X-Adept
  
Join Date: Dec 2002
Location: Firetanksoftware.com
Posts: 469
 

Default

First, set the "products per row" in your appearance preferences. Then you need to edit skin1/customer/main/products.tpl, find this code:

Code:
{if $usertype eq "C" and $config.Appearance.products_per_row ne "" and $config.Appearance.products_per_row gt 0 and $config.Appearance.products_per_row lt 4 and ($featured eq "Y" or $config.Appearance.featured_only_multicolumn eq "N")}

And change it to this:

Code:
{if $usertype eq "C" and $config.Appearance.products_per_row ne "" and $config.Appearance.products_per_row gt 0 and $config.Appearance.products_per_row lt 100 and ($featured eq "Y" or $config.Appearance.featured_only_multicolumn eq "N")}

The cart checks to make sure you do not have less than one or more than three columns. This code change makes it check for between 1 and 99 columns.

(This is untested, but should work with no problems)
__________________
X-cart Featured Products Manager from http://www.firetanksoftware.com - Put your products where you want, how you want.
Reply With Quote