Page 1 of 1

Adding SSL site seal

Posted: Sat May 08, 2010 2:05 am
by easyhost
Hi I am looking for help in which file to i add these

I have an SSL for my site which i need to add a site seal and the supplier instructions are

How to implement a GlobeSSL Seal Logo into your Website
Step 1: Copy the below JavaScript in your HTML page's <head> tag.

Use the following line if you are displaying your GlobeSSL Seal Logo over a STANDARD NON-SECURE page, e.g. http://
<script language="JavaScript" src="http://seal.globessl.com/seal.js" type="text/javascript">
</script>
Use the following line if you are displaying your GlobeSSL Seal Logo over a SECURE page, e.g. https://
<script language="JavaScript" src="https://seal.globessl.com/seal.js" type="text/javascript">
</script>
Step 3: Copy and paste the below code into your webpage HTML.
<!--
GlobeSSL Seal Logo Html Builder Code:
Shows the logo at URL http://mysite.com/images/corner-seal.gif" onclick="window.open(this.href);return false;
Logo type is ("GSSL")
//-->
<div id="none"><script type="text/javascript">Seal("http://mysite.com/images/corner-seal.gif", "GSSL", "none");</script></div>

Re: Adding SSL site seal

Posted: Sat May 08, 2010 3:20 am
by Qphoria
You can add it to anywhere you want.
If you want it in the header then catalog/view/theme/YOURTHEME/template/common/header.tpl.
I put mine in the column_right.tpl file on my site at the bottom.

But considering you have made many custom templates, you should already know this.
I think there are 2 people using your single username.

Re: Adding SSL site seal

Posted: Sat May 08, 2010 3:29 am
by easyhost
I have never made any templates, i am no developer or coder
Qphoria wrote:You can add it to anywhere you want.
If you want it in the header then catalog/view/theme/YOURTHEME/template/common/header.tpl.
I put mine in the column_right.tpl file on my site at the bottom.

But considering you have made many custom templates, you should already know this.
I think there are 2 people using your single username.

Re: Adding SSL site seal

Posted: Tue Sep 21, 2010 1:24 pm
by daniel2008
Hi Q,
I need Site Seal Logo put in my coming website too.
If you want it in the header then catalog/view/theme/YOURTHEME/template/common/header.tpl.
I put mine in the column_right.tpl file on my site at the bottom.
But I can't find the similar logo in your webpage.
Can you explain more details about it? Thanks,

Re: Adding SSL site seal

Posted: Wed Dec 14, 2011 8:16 am
by smellybd
Has anyone done this at all...
If so please share


Samantha

Re: Adding SSL site seal

Posted: Thu Dec 15, 2011 1:57 am
by alaskaberries
HI,

I am having the same question and have scoured the forum and found this thread.
I am trying to add the Paypal Verfied logo to my store. I located the column_right_tpl file that Qphoira was talking about but have no idea on how to add the code that paypal provided me. It is in html and not php.

Here is the tpl file. Can someone tell me hopw to insert my code?

Code: Select all

<?php if ($modules) { ?>
<div id="column-right">
  <?php foreach ($modules as $module) { ?>
  <?php echo $module; ?>
  <?php } ?>
</div>
<?php } ?>
Here is the code paypal provided.

Code: Select all

<!-- Begin Official PayPal Seal --><a href="https://www.paypal.com/us/verified/pal=nameofmystore%80state%4enet" target="_blank"><img src="https://www.paypal.com/en_US/i/icon/verification_seal.gif" border="0" alt="Official PayPal Seal"></A><!-- End Official PayPal Seal -->
Thanks in advance

Re: Adding SSL site seal

Posted: Sat Dec 17, 2011 7:43 am
by keithwjones
Put the code before </div>

Just added one to my site.

Keith

Re: Adding SSL site seal

Posted: Thu Dec 29, 2011 5:58 am
by theking1010
Hi,

I would like to know how I can install the GlobalSign SSL Certificate Secure Site Seal on the checkout page. I am using version 1.5.1.3 and using the default stock template.

Site seal code: http://www.globalsign.com/ssl/buy-ssl-c ... site-seal/

Thanks in advance!

-Elvis

Re: Adding SSL site seal

Posted: Fri Dec 30, 2011 6:51 am
by keithwjones
Look for:

catalog > view > theme > default > template > checkout

I would think the file you need to edit is checkout.tpl

I'm presuming you have made a new theme folder to put the changed .tpl files into.

Add your code where you want the seal to appear.

Keith

Re: Adding SSL site seal

Posted: Fri Dec 30, 2011 7:08 am
by theking1010
Thank you Keith. Where in the checkout.tpl file I should insert the code? I inserted the code before the </div> tag and I did not see the site seal on the check out page.

Thank you for your help.

-Elvis

Re: Adding SSL site seal

Posted: Fri Dec 30, 2011 7:47 am
by keithwjones
Try putting it at end just before:

Code: Select all

<?php echo $footer; ?>
In fact I have just added my seal to my checkout page and it works.

Keith

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 3:36 am
by theking1010
Thanks. I added the code, however the image is broken. What do you think is happening?

-Elvis

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 7:21 am
by keithwjones
theking1010 wrote:Thanks. I added the code, however the image is broken. What do you think is happening?

-Elvis
A link to your site would be good to see what is happening.

Keith

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 11:22 am
by yakideo
A qick tip is to omit the http: and https: in the javascript src. Then the browser will load the file through the appropriate protocol (eg. it will use https when the user is on ssl and http if the user is not)

Code: Select all

<script language="JavaScript" src="//seal.globessl.com/seal.js" type="text/javascript">
</script>

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 5:16 pm
by keithwjones
yakideo wrote:A qick tip is to omit the http: and https: in the javascript src. Then the browser will load the file through the appropriate protocol (eg. it will use https when the user is on ssl and http if the user is not)

Code: Select all

<script language="JavaScript" src="//seal.globessl.com/seal.js" type="text/javascript">
</script>
Elvis I believe is using GlobalSign so you do not need to put anything in <head>

They give you code which you paste in <body>

Keith

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 10:22 pm
by theking1010
Hi Keith,

The site seal is on the bottom left of the check out page. The image is broken.

https://brembobrakesshop.com/index.php? ... t/checkout

Thanks
Elvis

Re: Adding SSL site seal

Posted: Wed Jan 04, 2012 11:53 pm
by keithwjones
This might help:

http://community.actinic.com/showthread.php?t=49539

Or ask GlobalSign

Keith

Re: Adding SSL site seal

Posted: Thu Jan 05, 2012 1:08 am
by theking1010
The SSL certificate is from Alpha SSL not Global Sign, therefore the issue has been solved.
http://www.alphassl.com/support/ssl-site-seal.html.
I installed the code from Alpha SSL and I see the seal.
Have a great day!

Re: Adding SSL site seal

Posted: Thu Jan 05, 2012 1:33 am
by keithwjones
Well done.

Keith

Re: Adding SSL site seal

Posted: Fri Jul 19, 2019 3:51 am
by williamino
smellybd wrote:
Wed Dec 14, 2011 8:16 am
Has anyone done this at all...
If so please share


Samantha
I HAVE it here for OC 2.0 etc https://www.wanttono.com/?s=footer