Zen Cart Logo
Forums / Addon Sideboxes / Ecommerce Seals and Payment Icons [Support Thread]

Ecommerce Seals and Payment Icons [Support Thread]

Views: 2,522

Results 1 to 6 of 6
28 Aug 2013, 1:46 PM
#1
responsivezc avatar

responsivezc

New Zenner

Join Date:
Aug 2013
Posts:
85
Plugin Contributions:
8

Ecommerce Seals and Payment Icons [Support Thread]

@bergernovelties - Please post your question here.

29 Aug 2013, 3:44 AM
#2
bergernovelties avatar

bergernovelties

New Zenner

Join Date:
Apr 2008
Location:
Lindenwood, Illinois
Posts:
27
Plugin Contributions:
0

Re: Ecommerce Seals and Payment Icons [Support Thread]

Would it be possible to add additional logos to the payment options? I would like to include Moneyorders and ZIPZAP.

29 Aug 2013, 5:37 PM
#3
responsivezc avatar

responsivezc

New Zenner

Join Date:
Aug 2013
Posts:
85
Plugin Contributions:
8

Re: Ecommerce Seals and Payment Icons [Support Thread]

Hi,

Yes, it is possible.
Follow these steps:

  • Rename your images to moneyorders.png and zipzap.png
  • Upload your images to the following directory /images/payment_icons/
  • Open the following file /YOUR_ADMIN_FOLDER/ecommerce_seals_and_payment_icons.php
    Look for the following line:
                               'PAYMENT_XOOM' => array('title' => 'Xoom', 'img' => 'xoom.png', 'default_value' => '0'),

Add below the line the following code:

                               'PAYMENT_MONEYORDERS' => array('title' => 'Moneyorders', 'img' => 'moneyorders.png', 'default_value' => '0'),
                               'PAYMENT_ZIPZAP' => array('title' => 'ZipZap', 'img' => 'zipzap.png', 'default_value' => '0'),
  • Open the following file /includes/modules/sideboxes/YOUR_TEMPLATE/payment_icons.php
    Look for the following line:
                               'PAYMENT_XOOM' => array('title' => 'Xoom', 'img' => 'xoom.png', 'default_value' => '0'),

Add below the line the following code:

                               'PAYMENT_MONEYORDERS' => array('title' => 'Moneyorders', 'img' => 'moneyorders.png', 'default_value' => '0'),
                               'PAYMENT_ZIPZAP' => array('title' => 'ZipZap', 'img' => 'zipzap.png', 'default_value' => '0'),
  • Go Admin >> Tools >> Install SQL Patches
    there execute the following queries
insert into `configuration`
(`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `date_added`) 
values
('Moneyorders', 'PAYMENT_MONEYORDERS', '0', '' , '0' , now() );

insert into `configuration`
(`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `date_added`) 
values
('ZipZap', 'PAYMENT_ZIPZAP', '0', '' , '0' , now() );
  • That's it.

If you want the photoshop files for the seals and payment icons, you can download them from:
http://blog.responsivezencart.com/ecommerce-seals-and-payment-icons-plugin/

Best regards,

29 Aug 2013, 11:48 PM
#4
bergernovelties avatar

bergernovelties

New Zenner

Join Date:
Apr 2008
Location:
Lindenwood, Illinois
Posts:
27
Plugin Contributions:
0

Re: Ecommerce Seals and Payment Icons [Support Thread]

Worked GREAT!
can be seen at bergernovelties {dot} net

Thanks for the SUPER QUICK response.

30 Aug 2013, 12:19 AM
#5
responsivezc avatar

responsivezc

New Zenner

Join Date:
Aug 2013
Posts:
85
Plugin Contributions:
8

Re: Ecommerce Seals and Payment Icons [Support Thread]

You're welcome. It looks great on your site.

15 Oct 2014, 4:32 PM
#6
creff avatar

creff

New Zenner

Join Date:
Oct 2008
Posts:
46
Plugin Contributions:
0

Re: Ecommerce Seals and Payment Icons [Support Thread]

Does anyone know how to remove the words "Seals" and "Payments" above each of the sideboxes this creates?