Quote Originally Posted by kburner View Post
I looked thru forum and could not find answer...please let me know if there is one.

At login page, I do not want category menu to show. How do I disable only at that page?

https://www.burnerbooks.com/index.php?main_page=login
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....