Hi there,
Has anyone generated a Authorize.net Seal sidebox yet? Like the GoDaddy SSL sidebox.
If so could you post or upload?
Many thanks
Tony
Printable View
Hi there,
Has anyone generated a Authorize.net Seal sidebox yet? Like the GoDaddy SSL sidebox.
If so could you post or upload?
Many thanks
Tony
If anyone is intrested
http://www.authorize.net/seal
hi tony,
how did you go about embedding the authorize.net seal code into the site?
i have almost no knowledge of html so if you can give me a small walkthrough, it will be much appriciated
-Becky Lee
After using the Godaddy Seal Sidebox contribution to display my Godaddy SSL seal, I decided to modify this contribution for my Authorize.net seal. I simply replaced all of the 'godaddy' references to 'authnet', paying attention to case. I was pleased to find that it worked perfectly, at least on IE7. When I checked with both Opera and Firefox, I found that the seal is not centered in the sidebox. If anyone has a suggestion, I would be thrilled to hear it...
Bob
All you have to do is replace the godaddy java script in tpl_godaddy.php in includes/templates/your_template/sideboxes folder simply take out the java and replace with image url your tasks is completed
Good Luck.
OK, I solved the centering problem, maybe not elegantly, but it's functional. I dusted off an old-fashioned html centering tag, and wrapped it around the the code provided by authorize.net, within the single quotes. Until someone suggests a more elegant way, this works.
I am working on a release for that sidebox, it will be released soon.
forgot to mention this was released a few weeks back.
http://www.zen-cart.com/index.php?ma...roducts_id=554
Enjoy!!
No, you have to add your merchant link to the image from your account on authorize.net account detail page
:clap:I got the seal to verify your site with authorize.net site. the logo is clickable.
step 1- install the side box mod. http://www.zen-cart.com/index.php?ma...roducts_id=554
step 2- go to your account on authorize.net, click "Verified Merchant Seal" copy the code that is given.
step 3- edit the code in the "includes\templates\YOUR TEMPLATE\sideboxes\tpl.authorize.php.
change this code:
$content .= '<img src="images/authorize/secure_payments_seal.gif">';
to this code:
$content .= 'PASTE THE COPIED CODE FROM AUTHORIZE.NET HERE';
you might have to adjust some <,> or left over code.
this worked for me.
hope this helps.
might be less confusing if I did that, so i think I will. Good call
thanks for the mod i was glad i can help when i can. i just quickly wrote the way to add the clickable image. It would probably be best if you did do the more expained way.
I sent the update to the downloads should be there soon.
I am getting the following error: Parse error: syntax error, unexpected $end in /home/vintagek/public_html/new_store/includes/templates/template_custom/sideboxes/tpl_authorizenet.php on line 18
Someone mentioned that you might need to make a few changes to get this to work. I have tried a few things, and this just breaks the box. Here is my file, with the merchant id removed:
<?php
/**
* tpl_authorizenet.php
*
* Loaded automatically by index.php?main_page=account_edit.<br />
* Displays information related to a single specific order
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* $Id: tpl_godaddy.php v 1.2 2006-09-06
* Zen Cart Mod For 1.3xxxx by knuckle-101
*/
$content .='<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="########################################";</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">Online Payment Service</a> </div>'
Any help is appreciated.
send me your file via email to my email address on profile, i will look at it
I did get this to work, thanks to cowboyfred's help. But the box contents are not centered, it floats very much to the left. To center the seal, here is what I did:
in your includes/templates/your-template/css/stylesheet.css, I added this to the very bottom:
.AuthorizeContent {
float: center;
margin-left: 2em;
padding: 1em }
then, in the includes/modules/sideboxes/your-template/authorizenet.php, follow the directions in the readme file and it works fine.
Sadie
Should have default centered, however that is based on the classic template, I will add this to the next update. Can you post what you did to make the code work so everyone else can see it as well, simply take out your merchant details and replace them with xxxxx instead of ____
Rob
To get the box and seal to work, I used cowboyfred's file, and inserted my merchant ID in it. I am not sure how his an my file differ (I think it is something really small), but his worked. Here is the code that i used. Replace "MY SITE ID" with the merchant ID that authorize.net sent you.
<?php
/**
* tpl_authorizenet.php
*
* Loaded automatically by index.php?main_page=account_edit.<br />
* Displays information related to a single specific order
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* $Id: tpl_godaddy.php v 1.2 2006-09-06
* Zen Cart Mod For 1.3xxxx by knuckle-101
*/
$content .= '<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="MY SITE ID";</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">Online Payment Processing</a> </div>';
?>
Sadie
urm, you added the class to the link line this needs to be in a different file includes\modules\sideboxes\YOUR_TEMPLATE\authorizenet.php have you tried adding it there see what happens?
This could cuse alignment troubles for classic users.
Code:<?php
/**
* authorizenet.php
*
* Loaded automatically by index.php?main_page=account_edit.<br />
* Displays information related to a single specific order
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* $Id: authorizenet.php v 1.3 2006-09-06
* Zen Cart Mod for 1.3 by knuckle-101
*/
// test if box should display
$show_authorizenet = true;
if ($show_authorizenet == true) {
$content = '';
require($template->get_template_dir('tpl_authorizenet.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_authorizenet.php');
$content = '<div id="' . str_replace('_', '-', $box_id . 'Content') .
'" class="AuthorizeNetSeal">' . $content . '</div>';
$title = BOX_HEADING_AUTHORIZENET;
$title_link = false;
$left_corner = false;
$right_corner = false;
$right_arrow = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
}
?>
Hi,
I just logged into my authorize.net account and copied the javascript that they had given me for my particular domain name. I placed that into a sidebox and it worked fine for me, and is clickable. The one thing I did notice, however, is that when I was creating my site, I was viewing it off of my hard drive, and the authorize.net image was not showing up. Only when I had the site uploaded to the server did the image appear and become clickable. Don't know why that was, but I thought it wasn't working until I viewed it off of the actual server.
The code should have the image attached when pasted.
Try removing the image itself and use thier code directly.
Hmm. It didn't center. I'll look at it some more with fresh eyes in the next few days. Perhaps a typo. Is it centered for others? I'm sure it is .....
I added my Godaddy SSL Seal fine using Knuckle's addon, but I am trying to also include my Godaddy Certified Domain Seal in the same sidebox.
I know this shouldn't be hard, but I can't quite get both seals to display.
Any insight to point me in the right direction? Thanks :frusty:
Im working on a sidebox for the certified seal, is that what you talking about?
Both the seals are the same size and look rather similar, so I was hoping to plop them neatly in the same sidebox, on top of each other.
I renamed the sidebox to "Site Security" so it would be cool to have them contained there, instead of adding yet another side box for the certified seal too. :smile:
I will see what I can do, what exactly are you wanting
so i do know what the scoop is, you are wanting to add godaddy site seal with authorize merchant seal correct in same box
Basically this:
http://www.worthprotection.com/knuckle.html
contained in your Godaddy sidebox. Thanks for looking!
Can you pm me your certified script from godaddy, I do not have one to test with.
Has anyone tried this sidebox with Zen Cart 1.3.0.2? That's what I'm running and I want to use this sidebox but am afraid to try it since it is made for 1.3.5+. Thanks in advance!
-Andrew
You mean like this hereQuote:
Basically this:
http://www.worthprotection.com/knuckle.html
contained in your Godaddy sidebox. Thanks for looking!
It should work, upload it turn it on after you inserted your code and see if it works, there was not much difference in the code and these are stand alone files no core over write give it a shotQuote:
Has anyone tried this sidebox with Zen Cart 1.3.0.2? That's what I'm running and I want to use this sidebox but am afraid to try it since it is made for 1.3.5+. Thanks in advance!
-Andrew
I submitted the godaddy ssl seal and certification seal combo contrbution to the downloads should be showing up soon.
Glad to hear worked for you, I am in the process of making some other goodies, maybe outside the sidebox contrubitions, not sure yet, just have to wait and see :cool:
I needed to do this, too, before it came out centered on http://classygroundcovers.com/cart/ (the ZC site on this link is not live yet, the link below is).
Thanks, bobguindon! ... and thanks to knuckle-101 for the mod!!
Sure:
$content .= '<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="blah blah";</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">Online Payment Service</a> </div> ';
Gotta love these late nights. I got it - a simple div wrapper:
$content .= '<!-- (c) 2006. Authorize.Net is a registered trademark of Lightbridge, Inc. --> <div align="center"><div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="---------";</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">Online Payment Service</a> </div></div>';
Hi,
I have added this side box to the current project(works fine) I am working on.
My client does not yet have a authorize net account, so I am trying to get the GIF to show in the sidebox for presentation purposes.
I edited the tpl_authorizenet.php with:
$content .='<img src="images/authorize/secure_payments_seal.gif>';
But the sidebox remains blank. The file and directory exist.
Any suggestions?
Thanks for any assistance,
Metauniverse
you must host the image you cannot hotlink from authorize.
Thank you.
I cannot get this mod to work for the life of me and i have installed much harder ones lol
OK First issue- my template doesn't have a folder in the sideboxes they are all in the main folder- so first i put it in the main folder- my entire layout dissappeared so then i created in a folder for my template- and then the sideboxes disappeared except for one column down the middle
i think this is complete user error but totally lost as to where :)
sorry i'm working on this site:
http://74.52.222.34/~exclusiv/
i did the paypal one painlessly so not sure why this won't work :(
disregard- figured it out- the tpl file was supposed to go in the template default one not my template... like the paypal mod - it works now..
Is there any way to center it in the box though? looks kinda funny :)
Ok, I did some research and figured out another way to solve the centering problem, modifying only CSS.
I put this in my stylesheet.css:
At least it seems to work on my site now.Code:#authorizenetContent {
margin: 0 auto;
width: 90px;
}
I just installed this mod and two problems Im having with it, The side box is now a link to godaddy ssl website, and it is centered but it is spaced downward funny. You can click on the authorize pick and it gos to the correct place but anywhere else and you end up at godaddy.
anythoughts?
I have a ZenCart 1.3.8a site, www.lifering.com, hosted by CrystalTech, to which I just added Knuckle-101's Authorize.net merchant site seal sidebox. Working fine except that it isn't centered. Having read the thread, I've seen several suggestions for that which I can try.
My question is: there was some discussion of displaying multiple seals in the same sidebox, and I'm not clear on how to do that. We just became PCI DSS certified and I'd like to add that seal as well. Do I just stack a second "content .= " statement after the first one or do I build another set of 3 files for an additional sidebox?
Advice gratefully accepted; Knuckle, that was VERY easy to put up!
Thanks for all the great info to implement this sidebox - but I really didn't want another sidebox header sooo - I took the $content section as built with the Authorize.net code, and placed it in the bottom of the tpl_shopping_cart.php file (saved in an override folder). It worked perfectly and sets the verified seal with the cart info, which seems appropriate.
I copied the $content code (as required to show the seal) and placed it just above the final:
$content .= '</div>';
?>
in the tpl_shopping_cart.php
I am trying to implement both the GoDaddy SSL seal and the Authorize.net seal. Problem is that the Readme states:
Add the following files:
/includes/languages/english/extra_definitions/YOUR_TEMPLATE/authorizenet_defines.php
/includes/modules/sideboxes/YOUR_TEMPLATE/authorizenet.php
/includes/modules/templates/YOUR_TEMPLATE/sideboxes/authorizenet.php
My file structure in the Zen Cart is:
Includes
I am trying to implement both the GoDaddy SSL seal and the Authorize.net seal. Problem is that the Readme states:
Add the following files:
/includes/languages/english/extra_definitions/YOUR_TEMPLATE/authorizenet_defines.php
/includes/modules/sideboxes/YOUR_TEMPLATE/authorizenet.php
/includes/modules/templates/YOUR_TEMPLATE/sideboxes/authorizenet.php
I have no templates folder in the modules folder. I am using Classic. When I add the first two files, in the zen cart admin sideboxes page it shows "sideboxes/Classic/authorize.php". All the other boxes list them as "sideboxes/file.php". In any event either place I put the file when I turn on the box my cart disappears except for the header. Is there an alternate location for the third directory? will that solve it or should I create a new template file under modules?
Found the answer here. Indeed there the paths are incorrect:
http://www.zen-cart.com/forum/showth...sidebox&page=2
Has anyone figured out how to center the seal in the sidebox. I tried the css method and putting div tags around it and I cant get it to center. My site is here: http://www.aclassactapparel.com
<center></center> I used the center tags around the code provided by Authorize.net on tpl_authorizenet.php
<?php
/**
* tpl_authorizenet.php
*
* Loaded automatically by index.php?main_page=account_edit.<br />
* Displays information related to a single specific order
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* $Id: tpl_authorize.net.php v 1.5 2006-09-06
* Zen Cart Mod For 1.3.8 by knuckle-101
*/
$content .= '<center><!-- (c) 2005, 2010. Authorize.Net is a registered trademark of CyberSource Corporation --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="id rermoved";</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 Check Processing</a> </div></center>';
?>