
Originally Posted by
pricediscrimination
Thanks! Is your #3 something to do with the option to turn on and off the center column status in the layout boxes controller? It never works for some reason.
No... column control is best-managed by:
1. edits to tpl_main_page.php (where you can disable left/right columns for specific pages)...
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;
}
EG
PHP Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'shopping_cart')) ) {
$flag_disable_right = true;
}
There are comprehensive NOTES in tpl_main_page.php for column display customisation
2. Page/category specific stylesheets (SEE THE README file in /includes/templates/classic/css/CSS_read_me.txt
Using {display:none} declarations for either the whole column, or even certain sideboxes in a column, you can hide elements on specific pages/categories...
3. For EZPAGES, see ADMIN>>>CONFIGURATION>>>EZ PAGES SETTINGS...
EZ-Pages Pages to disable headers
EZ-Pages Pages to disable footers
EZ-Pages Pages to disable left-column
EZ-Pages Pages to disable right-column