Is it possible to hide both the left and right columns when the main page is displayed?
I would like them to appear for all product pages and category pages, but just no the main home page.
Is it possible to hide both the left and right columns when the main page is displayed?
I would like them to appear for all product pages and category pages, but just no the main home page.
My Contributions: Zen Lightbox | Best Sellers Reloaded
Similar Thread at
http://www.zen-cart.com/forum/showth...debox+override
Thanks for the above link.
I've currently added the following code to my tpl_main_page.php (in my overrides folder.
While this works, it disables the left column on all category and sub-category pages too - which I don't want.Code:if ($current_page_base == 'index') { $flag_disable_left = true; }
I would just like to disable the left column on the main page (index page).
Is this possible?
My Contributions: Zen Lightbox | Best Sellers Reloaded
Ok, I've just sorted this by replacing my previous code with the following...
Code:if ($_GET['main_page'] == 'index' and $current_category_id=='') { $flag_disable_left = true; }
My Contributions: Zen Lightbox | Best Sellers Reloaded
To know that you are on the absolute main page ... there is a variable:
$this_is_home_page
When true, you are on the main page based on your configuration and you do not have to worry about settings etc.
PHP Code:if ($this_is_home_page == true) {
// I am the main page
} else {
// I am not the main page
}
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!
It's all beginning to come together now! :)
My Contributions: Zen Lightbox | Best Sellers Reloaded
Aren't jigsaw puzzels fun?! All the peices and parts fit perfectly, you just have to grab the right peice ... easy smeazy ...![]()
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!