Jump to content

[Solved] Site Seal In Footer


Recommended Posts

Hello.

 

I have a SSL certificate (AlphaSSL) and I would like to add the site seal in the footer of my shop online, as you can see on the screenshot that I attach. As I do not know how to do it, I ask you for help.

 

The code for SSL certificate secure site seal is the following:

 
<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>
 

Regards.

post-1211266-0-02419000-1458179554_thumb.png

Edited by patricia.rd.93 (see edit history)
Link to comment
Share on other sites

For this you will need to edit the blockcontactinfos.tpl file located in   themes/yourtheme/modules/blockcontactinfos.

 

At the very bottom after the closing </ul> and before the closing </section> add like this:  (you can copy and paste the code below)

 

<div class="rights">
<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>
</div>        
 
As a little extra you could also add just below this a copyright code like this  (Add this before the closing </div> tag from the code above)
 
 <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
 
 
Now add this to the global.css file located in themes/yourtheme/css  (you can change the color from fff to whatever color you desire)
 
.copyright{color:#fff;font-weight:bold;text-shadow: 1px 1px #000}
 
 
 
 
If you use the copyright code the complete code you will need to paste into the blockcontactinfos is this:
 
 
<div class="rights">
<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>
 
<span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
</div>        

 

 

You can see this in action on my site here https://team-shepherdusa.com

Edited by tdr170 (see edit history)
  • Like 1
Link to comment
Share on other sites

For this you will need to edit the blockcontactinfos.tpl file located in   themes/yourtheme/modules/blockcontactinfos.

 

At the very bottom after the closing </ul> and before the closing </section> add like this:  (you can copy and paste the code below)

 

<div class="rights">
<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>
</div>        
 
As a little extra you could also add just below this a copyright code like this  (Add this before the closing </div> tag from the code above)
 
 <span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
 
 
Now add this to the global.css file located in themes/yourtheme/css  (you can change the color from fff to whatever color you desire)
 
.copyright{color:#fff;font-weight:bold;text-shadow: 1px 1px #000}
 
 
 
 
If you use the copyright code the complete code you will need to paste into the blockcontactinfos is this:
 
 
<div class="rights">
<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl.com/ssl-certificates/wildcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a></span><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>
 
<span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
</div>        

 

 

You can see this in action on my site here https://team-shepherdusa.com

 

Hello.

 

Perfect. Thank you very much.

 

Regards.

Link to comment
Share on other sites

  • 4 weeks later...

I may see the issue in your code the closing </span> has this script after it  <script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>

 

Try moving the closing </span> to after this

 

<div class="rights">

<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl....ldcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script></span>
 
<span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
</div>  
 
If that does not work you could also add a <br /> after the closing </script> but before the opening <span   of the copyright code.     
 
You could also leave a link to your site and I can take a look and see what works best.
  • Like 1
Link to comment
Share on other sites

 

I may see the issue in your code the closing </span> has this script after it  <script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script>

 

Try moving the closing </span> to after this

 

<div class="rights">

<span id="ss_img_wrapper_115-55_image_en"><a href="http://www.alphassl....ldcard-ssl.html" target="_blank" title="SSL Certificates"><img alt="Wildcard SSL Certificates" border=0 id="ss_img" src="//seal.alphassl.com/SiteSeal/images/alpha_noscript_115-55_en.gif" title="SSL Certificate"></a><script type="text/javascript" src="//seal.alphassl.com/SiteSeal/alpha_image_115-55_en.js"></script></span>
 
<span class="copyright">© {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'} -  {l s='All Rights Reserved'}</span>
</div>  
 
If that does not work you could also add a <br /> after the closing </script> but before the opening <span   of the copyright code.     
 
You could also leave a link to your site and I can take a look and see what works best.

 

 

Hello.

 

Ok. Thank you very much.

 

Regards.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...