Results 1 to 8 of 8
  1. #1
    Join Date
    Dec 2004
    Posts
    21
    Plugin Contributions
    0

    Default Killing right sideboxes

    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.

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Killing right sideboxes

    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:
    Code:
    #checkout_shippingBody #navColumnTwo {display: none;}
    This will still take the time to process the right column, so is not the ideal solution.

  3. #3
    Join Date
    Dec 2004
    Posts
    21
    Plugin Contributions
    0

    Default Re: Killing right sideboxes

    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

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Killing right sideboxes

    Quote Originally Posted by Online2004 View Post
    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:

    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 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(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success')) ) {
        $flag_disable_right = true;
      }

  5. #5
    Join Date
    Dec 2004
    Posts
    21
    Plugin Contributions
    0

    Default Re: Killing right sideboxes

    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
    Attached Images Attached Images  

  6. #6
    Join Date
    Dec 2004
    Posts
    21
    Plugin Contributions
    0

    Default Re: Killing right sideboxes

    think i got it finally

  7. #7
    Join Date
    Oct 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Killing right sideboxes

    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.

  8. #8
    Join Date
    Oct 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Killing right sideboxes

    Founded myself :
    changed from
    if (in_array($current_page_base,explode( ...

    to

    if (in_array($ezpage_id,explode( ...

 

 

Similar Threads

  1. v154 Right sideboxes
    By Maynards in forum General Questions
    Replies: 4
    Last Post: 15 Mar 2015, 09:11 PM
  2. Right Column Sideboxes not staying to the right on some pages
    By kdays in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 9 Mar 2010, 09:53 PM
  3. Right sideboxes are not aligning correctly on the right
    By DivaVocals in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 6 Oct 2008, 09:09 PM
  4. Right Sideboxes Misaligned
    By ScriptJunkie in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 13 Sep 2008, 11:40 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg