Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Turning off side boxes on just one define page

Turning off side boxes on just one define page

Locked

Views: 992

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
26 Jan 2009, 12:56 AM
#1
buildingblocks avatar

buildingblocks

Totally Zenned

Join Date:
Jun 2008
Posts:
629
Plugin Contributions:
0

Turning off side boxes on just one define page

Is there a way to turn off the left and right columns on just the define_page_4.php page?

thanks

26 Jan 2009, 1:06 AM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Turning off side boxes on just one define page

Yes. How is explained in a comment at the top of the common/tpl_main_page.php, together with an example.

26 Jan 2009, 1:07 AM
#3
buildingblocks avatar

buildingblocks

Totally Zenned

Join Date:
Jun 2008
Posts:
629
Plugin Contributions:
0

Re: Turning off side boxes on just one define page

never mind I got it. I found a snippet of suggested code from another thread and changed it to my page_4.php

if ($this_is_page_4.php == true) {
$flag_disable_right = true;
$flag_disable_left = true;
}

edit:

Thanks for looking kuroi :-)