Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Please help, I need to add a gif image....


Guest

Recommended Posts

Posted

Please help, I need to add gif images during the checkout process. When you get to 'Payment Method', the customer can choose beteeen Credit Card and Paypal. I want to put small logos on the same lines, so the customers know how they can pay.

Ex:..

Credit Card - Visa + Mastercard

PayPal - Visa + Mastercard + Discover + American Express + eCheck

 

Thank you

Posted

Hi,

 

Open up your payment module file eg catalog/includes/modules/payment/paypal.php

 

Find the following lines

 

    function selection() {

     return array('id' => $this->code,

                  'module' => $this->title);

   }

 

And change to....

 

    function selection() {

     return array('id' => $this->code,

         'module' => $this->title,

      'image' => '<img src="http://www.your.site/catalog/images/cards.gif" border="0" align="absmiddle">');

   }

 

Where the http://...... bit is the path to your image for that payment module.

 

Hope this helps, back up your files before you try!

Reddy to Rumble

 

Thank you osCommerce and all who Contribute to her!

  • 4 weeks later...
Posted

How can I do this with the standard cc.php module?

 

I tried adding the same img src line to the corresponding place in cc.php and I got all kinds of errors.

 

Is there a way to add the CC logos into that box?

Thanks

Have you ever gotten any help from these forums? Be part of the community and help out by answering a question or 2.

Pass on what you know about OSC to someone who needs help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...