How to eliminate the left side bar while checking out
I feel as though my sidebar is making customers feel weiry when checking out because it has so many designs in it and on a check out page you just want the designs that you will be buying.
Is there anyway to eliminate this page just when checking out? I want the sidebar to be there throughout the entire shopping experience until the checkout
Thanks
Andrew
PS the website is http://www.iwannat.com
Re: How to eliminate the left side bar while checking out
I loaded your site but nothing showed up, so I'm assuming you just mean the left column.
Check this tutorial:
https://www.zen-cart.com/tutorials/i...hp?article=233
The file references you want to add are:
checkout_shipping
checkout_payment
checkout_confirmation
and possibly:
checkout_login
checkout_account
checkout_success
Re: How to eliminate the left side bar while checking out
I attempted to do what the tutorial says...and by all means it should work...but it doesn't...
Any other suggestions?
Thanks
Re: How to eliminate the left side bar while checking out
So you have this code..
PHP Code:
if (in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation')) ) {
$flag_disable_left = true;
}
and you uploaded to the correct directory..
includes/templates/name_of_your_custom_template/common
I suppose it could be a template issue. You might try the template's support thread.
Re: How to eliminate the left side bar while checking out
the exact code that I used to replace what was there is:
PHP Code:
if (in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_login,checkout_account,checkout_success,shopping_cart')) ) {
$flag_disable_left = true;
}
Re: How to eliminate the left side bar while checking out
probably a template issue
Re: How to eliminate the left side bar while checking out
This template radically changes the organization of the page, so very little of the standard layout fixes will work. You can get the left sidebar to disappear and the center to fill the space with this added to the end of your stylesheet:
Code:
#navColumnTwo {display: none;}
.centerColumn {width: 96%;}
Prefacing those with the correct page body ids will limit the effect to those pages.