We are looking to integrate Authorize.Net Verified Merchant Seal on our website. We have already added domain/subdomain on Authorize.net website and pasted the script in our code.
When we run our code then instead of seal following text comes:
(c) 2005, 2017. Authorize.Net is a registered trademark of CyberSource Corporation
Language: Angular version 1.x
Does anyone know the answer?
05-25-2017 12:38 AM
Can you verify the resulting source on your page contains src="https://verify.authorize.net/anetseal/seal.js" ?
05-25-2017 03:05 AM
Our page containes following:
src="//verify.authorize.net/anetseal/seal.js"
05-25-2017 05:06 AM
What is the URL to your page?
05-25-2017 05:39 AM
05-31-2017 05:46 AM
Hello,
Try the following:
<div class="AuthorizeNetSeal"><script language="javascript" type="text/javascript"> var ANS_customer_id="61f575eb-42ce-48d1-86a9-6318643c5a3e";</script><script language="javascript" src="https://VERIFY.AUTHORIZE.NET/anetseal/seal.js" type="text/javascript"></script><a href="http://www.authorize.net/" id="AuthorizeNetText" target="_blank">Credit Card Processing</a> </div>
05-31-2017 06:44 AM
The loading of seal.js is being deferred until after the page load. An asynchronously loaded script is likely going to run AFTER the document has been fully parsed and closed. Line 24 of seal.js is calling a document.writeln to create the seal.
05-31-2017 07:51 AM
Hi,
We have a problem with https and http. The seal is not showing in http pages but showing https.
Is this default one?Or any issue?
Thanks
08-21-2018 08:54 AM