how to make "specials" module and "bestsellers" module always display at the left or right side?
when I go to product page,they auto disappear,![]()
how to make "specials" module and "bestsellers" module always display at the left or right side?
when I go to product page,they auto disappear,![]()
optimizing my only one zencart template untill it becomes perfect.
ting_cbm#hotmail.com
Specials is designed to turn off when there is a products_id in the URL ...
You can change this with your templates and overrides by copying the:
/includes/modules/sideboxes/specials.php
to your templates and overrides directory:
/includes/modules/sideboxes/your_templates_dir/specials.php
and adding the code in RED:
For the Best Sellers sidebox you can customize it similarly with the code in RED:Code:if (isset($_GET['products_id'])) { $show_specials= false; } else { $show_specials= true; } // bof: force specials to always show $show_specials= true; // eof: force specials to always show if ($show_specials == true) {
Code:} else { $show_best_sellers= true; } // bof: force best_sellers to always show $show_best_sellers= true; // eof: force best_sellers to always show if ($show_best_sellers == true) {
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
thanks so much for " Ajeh",it works!
optimizing my only one zencart template untill it becomes perfect.
ting_cbm#hotmail.com
You are most welcome ... thanks for the update that this worked for you ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Bookmarks