Hi,
How do I turn off the left/right column when on certain pages such as the checkout?
Thx
Hi,
How do I turn off the left/right column when on certain pages such as the checkout?
Thx
Thanks a lot!!!
Im using the following styles instead of the one in the tutorials/faqs.
//add page names that you wantto disable left and right columns
$center_column_only = array('login','account');
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,$center_column_only) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}