Page 1 of 1

Inserting the SSL Graphic to Checkout

Posted: Sun Aug 08, 2010 7:59 pm
by Witchdoctor
Hi,

I would like to display the SSL Certificate graphic on the Checkout page, around the area of the payment methods (which includes credit card as one method).

Unlike a normal graphic to display, Thwate have generated a link to put on the website, along with the relevant code etc:
<div id="thawteseal" style="text-align:center;" title="Click to Verify - This site chose Thawte SSL for secure e-commerce and confidential communications.">
<div><script type="text/javascript" src="https://seal.thawte.com/getthawteseal?h ... ript></div>
<div><a href="http://www.thawte.com/products/" target="_blank" style="color:#000000; text-decoration:none; font:bold 10px arial,sans-serif; margin:0px; padding:0px;">ABOUT SSL CERTIFICATES</a></div>
</div>

Where is the best place to insert this coding, so that it displays in the credit card area of the checkout?


Thanks, Wendy

Re: Inserting the SSL Graphic to Checkout

Posted: Mon Aug 09, 2010 5:39 am
by mazhar
Edit your ConLib/OnePageCheckout.ascx file and locate following code line

Code: Select all

<h2 class="sectionHeader">Payment Method</h2>
and update it with following code

Code: Select all

<h2 class="sectionHeader">Payment Method</h2>
<div id="thawteseal" style="text-align:center;" title="Click to Verify - This site chose Thawte SSL for secure e-commerce and confidential communications.">
<div><script type="text/javascript" src="https://seal.thawte.com/getthawteseal?host_name=www.qhashop.org.au&size=M&lang=en"></script></div>
<div><a href="http://www.thawte.com/products/" target="_blank" style="color:#000000; text-decoration:none; font:bold 10px arial,sans-serif; margin:0px; padding:0px;">ABOUT SSL CERTIFICATES</a></div>
</div>

Re: Inserting the SSL Graphic to Checkout

Posted: Mon Aug 09, 2010 7:21 pm
by Witchdoctor
Thanks!

Re: Inserting the SSL Graphic to Checkout

Posted: Thu Aug 12, 2010 2:07 pm
by AbleOne
Hi,

When i am placing my control near payment method at the checkout page the image is not getting rendered.But the same code block in the same usercontrol when i am placing near billing addreess it shows up.

<!-- GeoTrust QuickSSL [tm] Smart Icon tag. Do not edit. -->
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"
SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
<!-- end GeoTrust Smart Icon tag -->

Please advice.

Re: Inserting the SSL Graphic to Checkout

Posted: Thu Aug 12, 2010 5:59 pm
by Witchdoctor
I can confirm that the graphic part doesn't display when in the 'payment method' area.

Wendy

Re: Inserting the SSL Graphic to Checkout

Posted: Thu Aug 12, 2010 8:19 pm
by mazhar
I am not sure. Are you sure the script you are using is correct? There could be something missing in script. I am not seeing any reason that why AbleCommerce could have some problem with this.

Re: Inserting the SSL Graphic to Checkout

Posted: Thu Aug 12, 2010 8:36 pm
by Witchdoctor
Well, except for the fact that I am using my specific script (which was copy/pasted from the Thwate website generator), rather than Randy's script, as far as I know, the script is correct.

Thanks, Wendy