Zen Cart Logo

Authorize.net

Locked

Views: 1,046

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
20 Jul 2007, 1:13 AM
#1
wlamoreaux avatar

wlamoreaux

New Zenner

Join Date:
Jul 2007
Posts:
42
Plugin Contributions:
0

Authorize.net

On my payment page where the customer puts in there CC number. i would like to have something below the CCV number with an image saying that "all processing is done through authorize.net" or something like that.

i have seen the mod for the authorize.net seal "sidebox" but i do not want this box on the site at all time's i just want it to show on the check out page.

so if someone can show me how to do ither one.......

Thanks,
William

21 Jul 2007, 8:56 AM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Authorize.net

wlamoreaux:

i have seen the mod for the authorize.net seal "sidebox" but i do not want this box on the site at all time's i just want it to show on the check out page.

If you're using the sidebox, edit /includes/modules/sideboxyes/YOUR_TEMPLATE/authorizenet.php
around line 16 you have:

// test if box should display
  $show_authorizenet = true;

  if ($show_authorizenet == true) {
```change that like this:```
// test if box should display
  $show_authorizenet = ($current_page_base == FILENAME_CHECKOUT_PAYMENT) ? true : false;

  if ($show_authorizenet == true) {