
Originally Posted by
adb34
Thanks for the response.
I should have made myself a little clearer; I only want to 'turn off' the right hand column on several pages; 'checkout shipping, checkout Payment, checkout confirmation & checkout success', all other pages the right hand column is active; I have important info in that column which is not relevant whist checking out. As I said before I can use "$flag_disable_right = true;" but it does not give the desired effect I am looking for.
I believe this is similar code to what you have been trying:
Code:
if ($current_page_base == 'index' and $cPath == '') {
$flag_disable_right = true;
}
This may be where you're looking to make the code adjustments:
Code:
example: to override the shopping cart default page
- make a directory /templates/my_template/shopping_cart_default
- copy /templates/templates_defaults/common/tpl_main_page.php to /templates/my_template/shopping_cart_default/tpl_main_page.php
If the above location works, edit these files too:
checkout_confirmation_default
checkout_payment_address_default
checkout_payment_default
checkout_shipping_address_default
checkout_shipping_default
checkout_success_default
Let me know if that helps,