Results 1 to 10 of 201

Hybrid View

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by willie bee View Post
    So what you're saying is this is a good excuse to release version 2.0.1
    I'm saying I'll fix it with the next update.

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by willie bee View Post
    Instead of the next update, can you fix it in the next post, LOL. WTF am I supposed to change now?

    Seriously, though.

    Remove the three statements above and add $title_link = false;
    that is correct.

    gift_certificates.php

    $show_gift_certificates = true;

    if ($show_gift_certificates == true) {
    require($template->get_template_dir('tpl_gift_certificates.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_gift_certificates.php');
    $title = BOX_HEADING_GIFT_CERTIFICATES;
    remove these:
    $left_corner = false;
    $right_corner = false;
    $right_arrow = false;


    add this:
    $title_link = false;

    require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    }
    ?>

  3. #3
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    ONE LAST THING and I'm done in this thread and moving to the next one LOL.

    I am centering the images in each box.

    In stylesheet.css I would use these commands?

    #logobox1 {
    text-align: center;
    }

    #logobox2 {
    text-align: center;
    }

    using your example in your previous post on how to properly do the three boxes. what would i put in place of logobox1 and logobox 2?


    ANDDDDDD in one of the boxes I have an external link but I want it to open WITHIN the middle of my site like the others. Is that hard to do?
    Last edited by willie bee; 17 May 2011 at 06:27 AM.

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by willie bee View Post
    ONE LAST THING and I'm done in this thread and moving to the next one LOL.

    I am centering the images in each box.

    In stylesheet.css I would use these commands?

    #logobox1 {
    text-align: center;
    }

    #logobox2 {
    text-align: center;
    }

    using your example in your previous post on how to properly do the three boxes. what would i put in place of logobox1 and logobox 2?


    ANDDDDDD in one of the boxes I have an external link but I want it to open WITHIN the middle of my site like the others. Is that hard to do?
    #logosideboxContent, #logo2sideboxContent {
    text-align:center;
    }

    external links go to the website/page you are linking to.

  5. #5
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Ok folks. I got it all up and running and working. Centered images, creating multiple sideboxes with linking logos, working with external links and EZ-Pages. If anyone reading this thread has any questions, feel free to ask me direct or here and I'll do my best to help. I pretty much understand it now.

    Attached is a screen capture. TIA to both Clyde and Glenn.
    Attached Images Attached Images  

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

    red flag Re: Logo Sidebox Help

    Version 2.1 of Logo Sidebox is now available in the downloads section

    This version contains:
    Updated & improved coding
    fixed $title_link bug
    new comprehensive documentation.

  7. #7
    Join Date
    May 2011
    Location
    Sunny Rossendale (not)
    Posts
    556
    Plugin Contributions
    2

    Default cloned sidebox breaks my site

    I've been trying to creat extra sideboxes named logo, logoa, logob first 2 install no problem but as soon as I install logob it breaks my site. Renamed all the folders and files as per read me even tried giving them different names ie paylal_sidebox, delivery_sidebox but they still give the same result, is there something I'm missing
    <?php
    //
    //Contribution: Logo Sidebox
    //Author: Clyde Jones (http://clydedesigns.com/)
    //Version: 2.1
    //Updated: 5/17/2011
    //Updated by gjh42 20110517
    //License: under the GPL - See attached License for info.
    //Based on: Blank Sidebox by Judi Cox - www.MommaMuse.com
    //Support: Only given via the forums, please. (http://www.zen-cart.com/forum/showthread.php?t=57694)
    // --------------------------------------------------
    // 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
    // --------------------------------------------------
    // $Id: logo_sidebox_defines.php,v 2.1 2011-05-17

    define('BOX_HEADING_LOGO_SIDEBOX', '');

    //Logo number 1
    define('LOGO_SIDEBOX_IMAGE_WIDTH', '125');
    define('LOGO_SIDEBOX_IMAGE_HEIGHT', '125');
    define('LOGO_SIDEBOX_IMAGE', 'logo_test.jpg');
    define('LOGO_SIDEBOX_IMAGE_TEXT', 'My Logo');
    define('LOGO_IMAGE', zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT));

    //this is optional if you want to use the logo as a link
    //add your link information to the define statement below
    //examples
    //define('LOGO_SIDEBOX_LINK', '"http://your_link.com/" rel="external" target="_blank"');//only if you want to open in a new window
    //define('LOGO_SIDEBOX_LINK', '"http://your_link.com/"');//if you want to open in the same window, such as going to your own site's page
    //define('LOGO_SIDEBOX_LINK', '"index.php?main_page=whatever&amp;id=etc"');//for a link to a page on your site
    define('LOGO_SIDEBOX_LINK', '');
    ?>

    <?php
    //
    //Contribution: Logo Sidebox
    //Author: Clyde Jones (http://mysticmountainnaturals.com/testsite)
    //Version: 2.1
    //Updated: 2/13/2010
    //Updated by gjh42 20110517
    //License: under the GPL - See attached License for info.
    //Based on: Blank Sidebox by Judi Cox - www.MommaMuse.com
    //Support: Only given via the forums, please. (http://www.zen-cart.com/forum/showthread.php?t=57694)
    // --------------------------------------------------
    // 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
    // --------------------------------------------------
    // $Id: logo_sidebox.php, v 2.1 2011-05-17

    // test if box should display
    $show_logo_sidebox = true;

    if ($show_logo_sidebox == true) {
    require($template->get_template_dir('tpl_logo_sidebox.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_logo_sidebox.php');
    $title = BOX_HEADING_LOGO_SIDEBOX;
    $title_link = false;
    require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    }
    ?>

    <?php
    //
    //Contribution: Logo Sidebox
    //Author: Clyde Jones (http://mysticmountainnaturals.com/testsite)
    //Version: 2.1
    //Updated: 2/13/2010
    //Updated by gjh42 20110517
    //License: under the GPL - See attached License for info.
    //Based on: Blank Sidebox by Judi Cox - www.MommaMuse.com
    //Support: Only given via the forums, please. (http://www.zen-cart.com/forum/showthread.php?t=57694)
    // --------------------------------------------------
    // 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
    // --------------------------------------------------
    // $Id: tpl_logo_sidebox.php,v 2.1 2011-05-17
    // --------------------------------------------------
    //

    $logo_image = (LOGO_SIDEBOX_LINK == '')? LOGO_IMAGE: '<a href=' . LOGO_SIDEBOX_LINK . '>' . LOGO_IMAGE . '</a>';
    $content = '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . $logo_image . '</div>';
    ?>

    all I do is add a to the next and b to the next
    thankfully it's not on my live site just a test site I have.
    http://www.rvsolarsystems.co.uk/zen1...php?main_page=
    Last edited by discoverytdi; 1 Sep 2011 at 12:28 AM.
    What ever your doing remember to KISS ( Keep It Simple Stupid )

  8. #8
    Join Date
    Jan 2012
    Posts
    14
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Quote Originally Posted by willie bee View Post
    Ok folks. I got it all up and running and working. Centered images, creating multiple sideboxes with linking logos, working with external links and EZ-Pages. If anyone reading this thread has any questions, feel free to ask me direct or here and I'll do my best to help. I pretty much understand it now.

    Attached is a screen capture. TIA to both Clyde and Glenn.
    My logos are not centered, which CSS file did you put those codes?

    Thanks.

  9. #9
    Join Date
    Dec 2011
    Posts
    24
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    1st of all, thanks for the contribution. I'm really looking for logo sidebox but it's not workable for my ZC1.50.
    The sidebox is not show up after the installation.
    So forgive me if im wrong, this might be old thread that not updated to ZC1.50. For those who looking for similar plugin, I would suggest the "editable sidebox", it works fine for me, at least for the "onlink bank". You may refer to http://my.gobiztunnel.com
    My idea to have a 'better' logo sidebox or centerbox would be some logos/brand display in a matrix of 3x3, 3x5 or 5x5.
    I hope to work out, or any suggestion are welcome yea..

  10. #10
    Join Date
    Jul 2012
    Location
    AZ USA
    Posts
    59
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Quote Originally Posted by RJugalbot View Post
    My logos are not centered, which CSS file did you put those codes?

    Thanks.
    your main css file

 

 

Similar Threads

  1. Center Logo Sidebox, Live Help?
    By gee38l in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Dec 2008, 07:46 PM
  2. Replies: 1
    Last Post: 8 Dec 2008, 05:18 PM
  3. Replies: 0
    Last Post: 5 Nov 2007, 02:27 AM
  4. How do I center the Live Help logo in sidebox?
    By vivaraquel in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 29 Jul 2007, 09:23 AM
  5. Center Logo In sidebox, trust logo ?
    By [email protected] in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Feb 2007, 05:35 PM

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