This takes a very small mod to /includes/templates/your_template/common/tpl_main_page.php.
Find this at the top of the file
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;
}
and change to
PHP Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_success')) ) {
$flag_disable_left = true;
$flag_disable_right = true;
}
Look at the page names in your address bar to verify that their names are checkout_shipping,checkout_payment,checkout_success; alter the explode content if necessary.
Bookmarks