remove left/right columns on shopping cart page...
i used this code in the tpl_main_page to remove the left/right columns from the shopping cart page, but there is still a blank space the width of the columns on the page. how do i expand the center column to fill the page?
thanks
Code:
//add page names that you wantto disable left and right columns
$center_column_only = array('login','account',''checkout_success','checkout_shipping','checkout_payment','checkout_confirmation','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;
}