Page 3 of 3 FirstFirst 123
Results 21 to 28 of 28
  1. #21
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    I don't know where to look. The one thing I do know is that it was working...and the only change I made was to add the text box at the bottom of the page, using the Banner Manager. I don't remember seeing a problem occur after that; it just cropped up a few days ago.

    Actually, I think it cropped up after I turned off the COWOA, because that's having a problem that no one can figure out, either. Could deactivating the COWOA have caused this? I know it wasn't supposed to...but could it have? Because that's the only change I've made to anything in the Admin panel.

  2. #22
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Hot damn, that was it! When I reactivated the COWOA, the right column went away! Now if I could just get the COWOA to work properly!

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

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Looking closer, I see that the "if (!$this_is_home_page) {" test is inside the COWOA_SIDEBOX test scope, and thus can only operate if that is set to off. The flag didn't get set to false, it just never got set to true. Moving the homepage test outside the COWOA test will let it operate independently of that.

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

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Does COWOA_SIDEBOX_OFF only get defined if COWOA is enabled? If so, that fully explains the behavior change.

  5. #25
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Being a php moron, I can't say that I have any idea how to do that. But if I can get the COWOA to work properly, then it won't matter too terribly much. Problem is, the gurus over in that thread have no idea why it times out sometimes...but not always...before the user can download their books. It's not something we've been able to pinpoint, either, as there doesn't seem to be any pattern to when it works properly and when it doesn't. But...if there's a problem with a software program...it's likely that I'll find it. LOL

    Thanks for your patience as I worked through this!!

  6. #26
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Quote Originally Posted by gjh42 View Post
    Does COWOA_SIDEBOX_OFF only get defined if COWOA is enabled? If so, that fully explains the behavior change.

    Turn Off Sideboxes During Checkout is set to True. I'm not sure where else to check for a COWOA command; there's nothing in the Layout Boxes Controller that mentions the COWOA.

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

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    The edit is extremely easy. Just move one } up a couple of lines, from this:
    Code:
    heckout_process,shopping_cart,address_book_process')) ) {
    $flag_disable_right = true;
    $flag_disable_left = true;
    }
    if (!$this_is_home_page) {
    $flag_disable_right = true; //turn off right column except on homepage
    }
    }
    
    $header_template = 'tpl_header.php';
    to this
    Code:
    heckout_process,shopping_cart,address_book_process')) ) {
    $flag_disable_right = true;
    $flag_disable_left = true;
    }
    }
    if (!$this_is_home_page) {
    $flag_disable_right = true; //turn off right column except on homepage
    }
    
    $header_template = 'tpl_header.php';

  8. #28
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

    Default Re: How Do I Add A Text Box At The Bottom Of The Index Page?

    Wow, even I can handle that one!

    So now, having done this, if I decide to deactivate the COWOA again, my left-column-only format on all secondary pages should stay the same? Cool. Thanks!!

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. How to add text box on bottom of every page?
    By lc123 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 5 Jun 2011, 11:19 PM
  2. How do I get rid of the advertisement on the bottom of my index.php page?
    By moonlight in forum Installing on a Windows Server
    Replies: 2
    Last Post: 17 Jan 2010, 12:50 AM
  3. Replies: 0
    Last Post: 9 Jun 2008, 03:33 AM
  4. How do I add text to the BOTTOM of the main page only?
    By wtashby in forum General Questions
    Replies: 1
    Last Post: 25 Feb 2007, 01:09 AM
  5. how to remove the ad banner at the bottom of the index page?
    By chrisj in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 30 Aug 2006, 01:48 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR