Looking for an option to have a banner sidebox shown only on the main page, not on product pages etc. Is there a way to do it or a helpfull add-on? Thanks for help.
Looking for an option to have a banner sidebox shown only on the main page, not on product pages etc. Is there a way to do it or a helpfull add-on? Thanks for help.
You can use the variable:
$this_is_home_page
to determine if you are on the Home page or not ...
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, I thought there might be a variable like this. Where can I use it? With the Black Box Addon or make a new banner type?
I am not familiar with the Blackbox add on ... but on the Banner sidebox, you will see the code:
Below that you can use:Code:if (SHOW_BANNERS_GROUP_SET7 == '') { $show_banner_box = false; }
That will disable the banner_box.php sidebox when not on the home page ...Code:if (!$this_is_home_page) { $show_banner_box = false; }
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 a lot Ajeh, that did the job!
You are most welcome ... thanks for the update that you were able to use this to control the sidebox to only show on the Home page for your site ...![]()
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!
Check this also
https://www.zen-cart.com/tutorials/i...hp?article=270