Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Dec 2008
    Posts
    166
    Plugin Contributions
    0

    Default SSL Seal Only show on Secure Pages

    Hi,

    I am Would like to only show the ssl seal on secure pages. It will be going in the coding of tpl_main_page.php

    Is there some code which says

    if page = ssl (seal code) else do nothing

    ?

  2. #2
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: SSL Seal Only show on Secure Pages

    Wouldn't it be a good idea to let your customers KNOW that your site is seccure, AND they can click on your seal to double-check, BEFORE they go to an SSL page? Otherwise, they might NOT go to those pages.......like the Create Account page, which is one of the 1st pages you WANT them to go?

    Just an observation.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #3
    Join Date
    Dec 2008
    Posts
    166
    Plugin Contributions
    0

    Default Re: SSL Seal Only show on Secure Pages

    But then it would say secured by Geotrust when in fact the current Pages is NOT secured... :)

  4. #4
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: SSL Seal Only show on Secure Pages

    Correct, but all sites use this method, JUST SO the customer can click on their seal to make sure the seal IS registered to that particular site (check some sites out for yourself). The customers are used to ONLY the pages where they supply information being the only sucure pages on the site.

    If they DON'T see the seal on your Home page, chances are they will NEVER see it, as they will think you DON'T have SSL installed, and will not even bother to TRY to create an account.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #5
    Join Date
    Dec 2008
    Posts
    166
    Plugin Contributions
    0

    Default Re: SSL Seal Only show on Secure Pages

    point taken!

  6. #6
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: SSL Seal Only show on Secure Pages

    Now, it you STILL want it to only show on Secure pages, there are ways to do this.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  7. #7
    Join Date
    Dec 2008
    Posts
    166
    Plugin Contributions
    0

    Default Re: SSL Seal Only show on Secure Pages

    Ye. I think I will only show on secure pages..

  8. #8
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: SSL Seal Only show on Secure Pages

    Are you gonna display this seal in a sidebox, or where, exactly?


    Oops, should have looked a post 1, again.

    Try adding something like this to your page:

    if ($request_type == 'SSL') {
    $flag_disable_YOURSEALNAME = false;
    } else {
    $flag_disable_YOURSEALNAME = true;
    }

    (Replace YOURSEALNAME with the filename of your seal, of course)
    Not possitive that is correct, but worth a shot.
    Last edited by Get Em Fast; 1 Jun 2009 at 12:37 AM.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  9. #9
    Join Date
    Dec 2008
    Posts
    166
    Plugin Contributions
    0

    Default Re: SSL Seal Only show on Secure Pages

    The seal is js.

    <!-- Start Trustico Smart Seal -->
    <script language="JavaScript" type="text/javascript" src="https://smarticon.geotrust.com/si.js"></script>
    <!-- End Trustico Smart Seal -->

    So that didn't work.

  10. #10
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: SSL Seal Only show on Secure Pages

    What about:

    Code:
    <!-- Start Trustico Smart Seal -->
    <script language="JavaScript" type="text/javascript" src="https://smarticon.geotrust.com/si.js"></script>
    if ($request_type == 'SSL') {
    $flag_disable = false;
    } else {
    $flag_disable = true;
    }
    
    <!-- End Trustico Smart Seal -->
    something like that? Again.....not sure this will work. I'm not the greatest with the php, but nobody else seemed to be answering you, so I though it might be worth a shot.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. How do I get SSL Seal to show up on my pages?
    By wonderbread101 in forum Addon Sideboxes
    Replies: 1
    Last Post: 24 Dec 2011, 05:40 PM
  2. Is it possible to have my images show on secure pages (SSL)
    By sfklaas in forum General Questions
    Replies: 2
    Last Post: 30 Apr 2008, 03:55 PM
  3. SSL Seal Logo Only On https Pages
    By RtX in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 5 Dec 2007, 01:28 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