I've downloaded this MOD
http://www.zen-cart.com/index.php?ma...products_id=77
and now my Product Listing displays 2 products per rows which is what I wanted.
Now how can I do the same for all my other listings? (New prod, feature prod ect)
I've downloaded this MOD
http://www.zen-cart.com/index.php?ma...products_id=77
and now my Product Listing displays 2 products per rows which is what I wanted.
Now how can I do the same for all my other listings? (New prod, feature prod ect)
admin > config > index listing > New Products Columns per Row Featured Products Columns per Row and Special Products Columns per RowNow how can I do the same for all my other listings? (New prod, feature prod ect)
set to what you want
Zen-Venom Get Bitten
The code for Zen Cart has different layouts for each (for reasons that I do not know) as in new, featured, special, and all.
Moving code around from one to the other is the only way that I know of to change these. You can look at the tpl files for each and follow the logic
Zen-Venom Get Bitten
I used a MOD to have the 2 columns for the product listing which involved changind the db as well... I suppose I can copy the tpl files for the product listing and change them for the other pages but I'm not sure about the db... I had to insert these before
INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
configuration_description, configuration_group_id, sort_order,
last_modified, date_added, use_function, set_function)
VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows',
'Select the layout style:<br />Each product can be listed in its own row (rows option)
or products can be listed in multiple columns per row (columns option)', '8', '40', NULL,
now(), NULL, 'zen_cfg_select_option(array(\'rows\', \'columns\'),');
INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
configuration_description, configuration_group_id, sort_order,
last_modified, date_added, use_function, set_function)
VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3',
'Select the number of columns of products to show in each row in the product listing.
The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);
I'm not sure what value I should write for New product, feature product ect ect
Any ideas ?
It is not as simple as that and over what can be covered in this venue as a forum.
Zen-Venom Get Bitten
I installed this mod and it really did the trick. however, when the page displays in Firefox it's kind of wonky (until you refresh the page). IE presents the content just fine... which is always suspect.
Hello forum friends.
I'm using this mod, but the default 3 column layout sets a style width to 32.5%. I'd like to change that % to a specific pixel width. I know it's going to a 3 column layout so I can "hard code" that information if necessary.
Any help is appreciated. Thanks!