Does anyone know code and file to put disable menu on pages like login, shopping cart, etc?
I have sideboxes disabled with includes/temp/xxx/templates/common/tpl_main_pge.php with this code:
//add page names that you want to disable left and right columns
$center_column_only = array('login','account','no_account','checkout','create_account', 'shopping_cart');
// 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;
}
I figure it has to be similar....
Bookmarks