How can i remove the right column from the cart page? I am sure this is easy, I just can't figure it out.
How can i remove the right column from the cart page? I am sure this is easy, I just can't figure it out.
Admin > Configuration > Layout Settings > Column Right Global - Status.
What version are you using?
In the newer versions you can remove it from the Admin.
If you want it gone from all pages, you go to:
Configuration > Layout Settings > Column Right Status - Global and set accordingly.
Want it removed from just the "cart" page only, you have to open up the associated PHP file and you'll find the instructions on how to remove the sidebars for individual pages commented out near the top. Add the pages you want it to be removed on and you're all set.
Eric
20 Ways to Increase Sales Using Zen Cart
Zen Cart contribs: Simple Google Analytics, Export Shipping Information
I am running Zen 1.3.7. I would like to remove at least the right column from this page, "/index.php?main_page=shopping_cart"
Which file would I need to update to do this? Thanks for your help.
/includes/templates/your_template/common/tpl_main_page.php.
If you don't find it there, copy it from /template_default/common/ and then edit it.
There is a section of comments at the top of the file which describe how to do this.
You would put shopping_cart into the list given, and make the test control $flag_disable_right.
PHP Code:// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'list_pages_to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces')) ) {
$flag_disable_right = true;
}
Thanks for the help. That worked exactly how I wanted.