Can anyone explain how to kill the right sideboxes during checkout process?
I have read the forums but they all state older versions we are using v 1.3.8a any help is appreciated.
Can anyone explain how to kill the right sideboxes during checkout process?
I have read the forums but they all state older versions we are using v 1.3.8a any help is appreciated.
The process has not changed. Methods described in the forum will still work, or for a quick & dirty fix you can use the stylesheet to hide the right column on checkout pages.
Something like this:This will still take the time to process the right column, so is not the ideal solution.Code:#checkout_shippingBody #navColumnTwo {display: none;}
I tried those other edits but they never specified anything like IFS not sure what IFS are and not sure what code goes where they only pasted the code not exactly where it went so it took the whole site down
open includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
Find the following section of code:
and change it as follows: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; }
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_confirmation,checkout_success')) ) { $flag_disable_right = true; }
OK here is what I got
// 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,che ckout_confirmation,checkout_success,product_info,product_music_info,document_gen eral_info,product_free_shipping_info,document_product_info,')) ) {
$flag_disable_right = true;
}
in the file but notice this right where i have pointed out (",",<--is black not red 'checkout
the comma is black and please see screenshot what I am trying to do not sure whats causing this
think i got it finally
Hi @ all,
this actions i knows.
I have this fall :
some pages with "index.php?main_page=page&id=16&chapter=1"
i want to diasbled.
All the other pages i have worked out, but these pages i cant
I tried it with "page&id=16" or "id=16" or "16" or "id16" or "page_id=16" or "page_id16" ...
...so...is there some who can give me the right direction ?
Please help.
Founded myself :
changed from
if (in_array($current_page_base,explode( ...
to
if (in_array($ezpage_id,explode( ...