Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Dec 2007
    Posts
    66
    Plugin Contributions
    0

    Default Blank Sidebox 2.0 - Godaddy SSL snippet

    Hi,
    I am trying to add code generated from godaddy to display my SSL site seal into a blank sidebox using blank_sidebox_2.0. I have the side box working fine but when I enter the code from godaddy only the top menu part of my page displays.

    Here is the godaddy code...
    <span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=127112044205e2b44f6127118f2c4f3a817e1301540326196724923076"></script><br/><a href='https://www.godaddy.com/gdshop/ssl/ssl.asp'>SSL Certificates</a></span>

    Any help would be grrrreat!

  2. #2
    Join Date
    Nov 2007
    Location
    AZ
    Posts
    713
    Plugin Contributions
    5

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Link Please.

    Did you happen to delete an apostrophe or break the existing sidebox content code when inserting yours?
    When life has a newness, a youth; then life has a flow and freshness. Then life has so many surprises. And when life has so many surprises, boredom never settles in you. -Osho

  3. #3
    Join Date
    Dec 2007
    Posts
    66
    Plugin Contributions
    0

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    I dont have it installed on the site because if I add the code from godaddy into the blank sidebox my entire site goes down.

    Is the seal only able to appear on pages that are secure?

  4. #4
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,974
    Plugin Contributions
    0

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    I have a dedicated godaddy sidebox if you want it I can zip it up for you.

  5. #5
    Join Date
    Dec 2007
    Posts
    66
    Plugin Contributions
    0

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Here is the code for the 2 blank sidebox pages...

    <?php
    /**
    * blank sidebox definitions - text for inclusion in a new blank sidebox
    *
    * @package templateSystem
    * @copyright 2007 Kuroi Web Design
    * @copyright Portions Copyright 2003-2007 Zen Cart Development Team
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: blank_sidebox.php 2007-05-26 kuroi $
    */

    define('BOX_HEADING_BLANK_SIDEBOX', 'Shop With Confidence!');
    define('TEXT_BLANK_SIDEBOX', 'TEXT AREA 1');

    ?>

    and

    <?php
    /**
    * blank sidebox - allows a blank sidebox to be added to your site
    *
    * @package templateSystem
    * @copyright 2007 Kuroi Web Design
    * @copyright Portions Copyright 2003-2007 Zen Cart Development Team
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: blank_sidebox.php 2007-05-26 kuroi $
    */

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

    // Replace the text and HTML tags between the apostophes on lines 19 and 20.
    // Use as many or as few lines using this model as you need for your custom content.
    // If you have a multilingual site define your text in the languages/YOUR_LANGUAGE/extra_definitions/blank_sidebox_defines.php and include it as shown in line 19.
    // If your site is monolingual, you can put the text right here as shown on line 20 (and nobody will know!)
    $content .= '<p>' . TEXT_BLANK_SIDEBOX . '</p>';
    $content .= '<p><span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=127112044205e2b44f6127118f2c4f3a817e1301540326196724923076"></script><br/><a href='https://www.godaddy.com/gdshop/ssl/ssl.asp'>SSL Certificates</a></span></p>';

    $content .= '</div>';
    ?>

    I tried adding the godaddy seal into the first page where it says text area 1 and to the last page where it shows it now. Neither work but the sidebox and page displays fine if I take that piece of code out.

  6. #6
    Join Date
    Dec 2007
    Posts
    66
    Plugin Contributions
    0

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Quote Originally Posted by fairestcape View Post
    I have a dedicated godaddy sidebox if you want it I can zip it up for you.
    That would be great! My email is jadamson@neo.rr.com.

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

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    [FONT="Comic Sans MS"]Hi adamson,

    I'm not sure if you received my private message or if you were able to sort this out. We looked in to this further and it appears that you aren't escaping the single quotes in your php string. You can either use the escape character \ or the double quotes " to resolve the issue.

    For example this:

    $content .= 'a href='https://www.godaddy.com/gdshop/ssl/ssl.asp'>SSL
    Certificates';

    should be either,

    $content .= 'a
    href=\'https://www.godaddy.com/gdshop/ssl/ssl.asp\'';

    or

    $content .= 'a
    href="https://www.godaddy.com/gdshop/ssl/ssl.asp"';

    Let us know if this doesn't do the trick. Thanks. [/FONT]

  8. #8
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,014
    Plugin Contributions
    12

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Why dont you just use the sidebox already made for godaddy? All you have to do in there is add the snippet from your ssl manager and then it will show automatically in the sideboxes
    Web Hosting & PCI Hosting, SecurityMetrics Platinum Partner
    PCI Certified Web Hosting - ControlScan, McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  9. #9
    Join Date
    Dec 2007
    Posts
    66
    Plugin Contributions
    0

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Quote Originally Posted by knuckle-101 View Post
    Why dont you just use the sidebox already made for godaddy? All you have to do in there is add the snippet from your ssl manager and then it will show automatically in the sideboxes
    Yup, thats what I did, worked like a charm!

  10. #10
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,014
    Plugin Contributions
    12

    Default Re: Blank Sidebox 2.0 - Godaddy SSL snippet

    Quote Originally Posted by adamson View Post
    Yup, thats what I did, worked like a charm!

    Good to hear makes life simplier doesn't it
    Web Hosting & PCI Hosting, SecurityMetrics Platinum Partner
    PCI Certified Web Hosting - ControlScan, McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Blank Sidebox Mod - remove a blank sidebox
    By PJD in forum Basic Configuration
    Replies: 4
    Last Post: 14 Mar 2008, 02:09 PM
  2. Godaddy SSL Seal sidebox
    By Linux in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 19 Jun 2007, 12:29 AM
  3. Snippet of JavaScript - Meta Tags (HELP)
    By rlexyd in forum General Questions
    Replies: 0
    Last Post: 5 Dec 2006, 01:24 AM
  4. Product description snippet in New Products etc
    By OMG in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 4 Jun 2006, 12:42 AM

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
  •