PDA

View Full Version : add payment gateway and ssl icons to site


HOC
04-14-2007, 01:33 PM
hi.

we have registered with authorize.net for our payment gateway. they have provided the following html so that we can display their logo to increase consumer confidence. can you help me get this in the html where i need it?

<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="d4783389-b6ec-409a-b337-a83b12aacef1";</script> <script type="text/javascript" language="javascript" src="//VERIFY.AUTHORIZE.NET/anetseal/seal.js" ></script> <a href="http://www.authorize.net/" id="AuthorizeNetText" target="_blank">Electronic Commerce</a> </div>

we will soon have an ssl that we will need to do the same thing with.

thanks,

anna

draknet
04-14-2007, 05:54 PM
Where is it you want it to display? On every page of the site (putting it in the template) or in one place on the site?

HOC
04-21-2007, 10:34 AM
in the template

lwyau
04-21-2007, 11:30 AM
This requires a working knowledge of HTML.

Download sohoadmin/program/modules/site_templates/pages/your_template_name/index.html, open it with an HTML editor, find a desired spot, stick in the code they provided, and upload it back.

HOC
04-21-2007, 12:21 PM
thanks.

we tried putting it in the html but perhaps need some guidance in terms of where to stick it. we attempted to put it in a footer position but it showed up akwardly as text, not an image, in the bottom left corner.

can you tell us where it should be in order to display as an image just below the menu links at the bottom of the page?

lwyau
04-21-2007, 12:39 PM
Change
src="//VERIFY.AUTHORIZE.NET/anetseal/seal.js"
to
src='//VERIFY.AUTHORIZE.NET/anetseal/seal.js'
(Change double-quotes to single-quotes).

This prevents soho from tagging on extraneous path info.

HOC
04-21-2007, 01:00 PM
thank you so much - that worked!

can you tell us how to get the icon to display below the menu buttons centered at the bottom of the template page?

thanks again.

lwyau
04-21-2007, 03:06 PM
Post your URL so we can see how your template looks like.

HOC
04-25-2007, 08:44 PM
www.blackjackbettinganalysis.com

lwyau
04-25-2007, 10:36 PM
Move the code up as shown in the following should do it.


<TR>
<TD ALIGN="CENTER" VALIGN="TOP" CLASS="section4"><FONT CLASS="contentsys">#TMENU#</FONT>
<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. -->
<div class="AuthorizeNetSeal">
<script type="text/javascript" language="javascript">
var ANS_customer_id="d4783389-b6ec-409a-b337-a83b12aacef1";
</script>
<script type="text/javascript" language="javascript" src='//VERIFY.AUTHORIZE.NET/anetseal/seal.js'>
</script>
</div>
</TD>
</TR>
</TABLE></TD>
</TR>

<TR WIDTH="135" HEIGHT="32" >
<TD WIDTH="135" HEIGHT="32" ALIGN="LEFT" VALIGN="TOP" CLASS="section5"><IMG SRC='spacer.gif' WIDTH="1" HEIGHT="32" HSPACE="0" VSPACE="0"></TD>
<TD ALIGN="CENTER" VALIGN="TOP" CLASS="section6">&nbsp;</TD>
</TR>
</TABLE>
</BODY>
</HTML>