Hello,
I am trying to disable the left and right columns for my login page. I read the tutorial Misty suggested and this is what I have put in the tpl_main_page.php file:
PHP Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'login')) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}
I also uncommented as 2 lines as follows:
PHP Code:
* Note: footer can be disabled in the tpl_footer.php<br />
* <br />
*/ $flag_disable_header = true;<br />
$flag_disable_left = true;<br />
$flag_disable_right = true;<br />
/** $flag_disable_footer = true;<br />
* <br />
It doesn't seem to be working. I have betterCategoriesEzInfo_v1.3.5 installed if that makes a difference?
Can anyone suggest how I should be doing this? I may want to include a couple of other pages later. Would I just be able to add them into the code with only a comma separating them, as explained in the tutorial?
Thank you
Bookmarks