Thread: blank sidebox

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Jan 2008
    Posts
    89
    Plugin Contributions
    0

    Default blank sidebox

    hello

    i have 1.3.8a zencart.

    and installed the blank sidebox MOD and when enabling the blank box

    my whole site went blank! just all white blank pages.. nothing loads and no error messages.

    anyone else experiencing this issue?

    www.thepurseworld.com

  2. #2
    Join Date
    Jul 2007
    Location
    England
    Posts
    84
    Plugin Contributions
    0

    Default Re: blank sidebox

    Yes, me too. I edited the file in Cpanel, then immediately tested the site, which went blank. I went back into Cpanel, removed the code I had just added to that contribution, which meant that my site was visible again. Scary stuff...

  3. #3
    Join Date
    Jul 2007
    Location
    England
    Posts
    84
    Plugin Contributions
    0

    Default Re: blank sidebox

    mthem2003,

    How did you manage to get your Godaddy site seal to work? I have posted this questions elsewhere in the forum tonight. Any advice gratefully received.

    Thanks.

  4. #4
    Join Date
    Jan 2008
    Posts
    89
    Plugin Contributions
    0

    Default Re: blank sidebox

    Quote Originally Posted by freshstart View Post
    mthem2003,

    How did you manage to get your Godaddy site seal to work? I have posted this questions elsewhere in the forum tonight. Any advice gratefully received.

    Thanks.
    go to the following
    /includes/languages/english.php

    and add .. (just my script with yours:

    Line #15 : define('FOOTER_TEXT_BODY', '<script language="Javascript" src="https://seal.godaddy.com/getSeal?sealID=199670800607fa45111127117d8d9ca2817dab0412999760"></script> ' .'<br/>&nbsp;</br>' .'Copyright &copy; ' . date('Y') . ' <a href="http://ThePurseWorld.com" target="_blank">ThePurseWorld</a>. Powered by <a href="http://ThePurseWorld.com" target="_blank">ThePurseWorld</a>');


    hope this helps :)

  5. #5
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: blank sidebox

    Try using Clyde's Logo Sidebox. I've found it to be a good, solid module which I have cloned for use numerous times on my sites.

    Good luck!

  6. #6
    Join Date
    Jul 2007
    Location
    England
    Posts
    84
    Plugin Contributions
    0

    Default Re: blank sidebox

    Hey, thank you both for your help. I managed to figure out what I was doing wrong with the Godaddy.php box...appears to be working now

  7. #7
    Join Date
    Apr 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: blank sidebox

    How do you use the logo sidebox more than once? How do you rename it? I want to make sure I am doing it right before attempting it? I have several logos that I want to add. Is it possible to add more than one logo in a box? Please Advise. Thanks

  8. #8
    Join Date
    Apr 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: blank sidebox

    I figured out the correct way to name each new logo box.

    But I am having problems with my link working.

    Can anyone tell me what I am missing? Please Advise. Thanks

    define('BOX_HEADING_LOGO_SIDEBOX2', 'Member');define('LOGO_SIDEBOX2_IMAGE_WIDTH', '85');define('LOGO_SIDEBOX2_IMAGE_HEIGHT', '115');define('LOGO_SIDEBOX2_IMAGE', 'iitc_logo.jpg');define('LOGO_SIDEBOX2_IMAGE_TEXT', '');define('LOGO_SIDEBOX2_LINK', 'http://www.i-itc.org.com/');//this is optional if you want to use the logo as a link//replace your_link.com with the link you choosedefine('LOGO_SIDEBOX2_LINK', 'http://www.i-itc.org.com/');


  9. #9
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: blank sidebox

    look in includes/templates/YOUR_TEMPLATE/sideboxes/tpl_logo_sidebox.php. You need to un-comment one area and comment out the other. just add or remove //

    <?php
    //
    // Blank Sidebox Mod
    // includes/templates/templates_default/sideboxes/tpl_blank_sidebox.php
    //
    // --------------------------------------------------
    // http://www.MommaMuse.com mod Zen-Cart - by Judi Cox
    // --------------------------------------------------
    // zen-cart Open Source E-commerce
    // Copyright (c) 2003-2006 The zen-cart developers
    // http://www.zen-cart.com/index.php
    // Portions Copyright (c) 2003 osCommerce
    // --------------------------------------------------
    // This source file is subject to version 2.0 of the GPL license,
    // that is bundled with this package in the file LICENSE, and is
    // available through the world-wide-web at the following url:
    // http://www.zen-cart.com/license/2_0.txt.
    // If you did not receive a copy of the zen-cart license and are unable
    // to obtain it through the world-wide-web, please send a note to
    // [email protected] so we can mail you a copy immediately.
    // --------------------------------------------------
    //
    // $Id: tpl_blank_sidebox.php,v 1.0 6/24/2006
    // Original modification by Carter Harris [email protected] based on the tpl_featured.php file
    // Additionally modified by Judi Cox http://www.mommamuse.com
    //
    // Link Option - uncomment this if you intend to use the logo as a link
    //$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT) . '</a>';

    //comment this out if you use the above link option.
    $logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT);

    $content = '';
    $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '">';

    $content .= $logoimage;

    $content .= '</div>';

  10. #10
    Join Date
    Apr 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: blank sidebox

    I'm not sure what you mean on what to take out and what to replace it with. I don't understand uncomment one and comment out the other.

    I took out a few things and most of my website was gone.

    I am just learning code.

    What should it look like to show the link? and do I change anything to show the link in this code?

    Can you tell me what I should wind up with.

    Here is what I have and the link should be http://www.i-itc.org/

    //// Link Option - uncomment this if you intend to use the logo as a link//$logoimage = '<a href="' . LOGO_SIDEBOX2_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX2_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX2_IMAGE, LOGO_SIDEBOX2_IMAGE_TEXT) . '</a>';//comment this out if you use the above link option.$logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX2_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX2_IMAGE, LOGO_SIDEBOX2_IMAGE_TEXT); $content = ''; $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '">'; $content .= $logoimage; $content .= '</div>';?>

    I can do some code but I need to know what it needs to look like with the changes. Thanks for your help
    Please Advise. Thanks Betty

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 Blank Sidebox Blank Page after adding code for livechat software
    By whatisthat456 in forum Basic Configuration
    Replies: 8
    Last Post: 3 May 2012, 10:40 AM
  2. Blank Sidebox, no borders or header, just blank
    By chris32882 in forum General Questions
    Replies: 16
    Last Post: 3 Dec 2009, 06:22 PM
  3. Flash hack&blank sidebox = blank page
    By AmandaGero in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Apr 2009, 06:19 PM
  4. Blank Sidebox
    By Sturmgeschutz in forum Basic Configuration
    Replies: 2
    Last Post: 28 Sep 2008, 04:24 PM
  5. Blank Sidebox Mod - remove a blank sidebox
    By PJD in forum Basic Configuration
    Replies: 4
    Last Post: 14 Mar 2008, 02:09 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