Hi,
I've turned on two boxes in right column, specials and best sellers. I don't know why they are not appearing on the product info (product details) page?
Is there any setting in the admin configuration to turn it off or on?
Regards
Hi,
I've turned on two boxes in right column, specials and best sellers. I don't know why they are not appearing on the product info (product details) page?
Is there any setting in the admin configuration to turn it off or on?
Regards
Specials says ...
Best Sellers says ...Code:if (isset($_GET['products_id'])) { $show_specials= false; } else { $show_specials= true; }
So Specials are, by design, not showing on the product _info ...Code:// test if box should display $show_best_sellers= false; if (isset($_GET['products_id'])) { if (isset($_SESSION['customer_id'])) { $check_query = "select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$_SESSION['customer_id'] . "' and global_product_notifications = '1'"; $check = $db->Execute($check_query); if ($check->fields['count'] > 0) { $show_best_sellers= true; } } } else { $show_best_sellers= true; }
Best Sellers are, by design, showing based on is customer logged in and has global notifications turned on ... if not logged in, then it does not show ...
You could customize these further with your templates and overrides to always show ...
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!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Thanks Ajeh,
I'll override the template then.
Thanks and Regards