I am updating my website to 2.1.0 and for the life of me, can't find the file to hide/show the brands side box on the page listing all products of the similar brand. it shows on all other pages.
I am updating my website to 2.1.0 and for the life of me, can't find the file to hide/show the brands side box on the page listing all products of the similar brand. it shows on all other pages.
Anyone?
Do all your sideboxes disappear along with it, or is this the only sidebox you're using?
only the brands side box, but it appears on all other pages, just not on the page with products of the same brand.
do you have a url I could look at?just not on the page with products of the same brand
Mike
AEIIA - Zen Cart Certified & PCI Compliant Hosting
The Zen Cart Forum...Better than a monitor covered with post-it notes!
The original question isn't clear in my mind, but I'll note that the brands sidebox doesn't display on manufacturer listing pages; see /includes/modules/sideboxes/brands.php for details.
thanks lat9
// test if brands sidebox should show
if ($current_page_base === FILENAME_BRANDS) {
return;
}
if ($current_page_base === FILENAME_DEFAULT && !empty($_GET['manufacturers_id'])) {
return;
}
What above has to be changed to over-ride the hiding of the brands side box?
Thanks,
never mind:
// test if brands sidebox should show
if ($current_page_base === FILENAME_BRANDS) {
// return;
}
if ($current_page_base === FILENAME_DEFAULT && !empty($_GET['manufacturers_id'])) {
// return;
}
What a dope!
Thanks for your help
Bookmarks