Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Removing Amex


Guest

Recommended Posts

How do I remove the option for American Express and Discover, All I want to use is Visa & Matercard, and possibly Switch & Solo??

 

Any ideas

Link to comment
Share on other sites

Open the file ccval.php inside of includes/functions.

 

Find the lines that say,

    } elseif ( ($NumberLeft >= 3400) && ($NumberLeft <= 3499) ) {

     $CardName = 'American Express';

     $ShouldLength = 15;

   } elseif ( ($NumberLeft >= 3700) && ($NumberLeft <= 3799) ) {

     $CardName = 'American Express';

     $ShouldLength = 15;

and simply comment out the option for Amex like so,

 

//    } elseif ( ($NumberLeft >= 3400) && ($NumberLeft <= 3499) ) {

//      $CardName = 'American Express';

//      $ShouldLength = 15;

//    } elseif ( ($NumberLeft >= 3700) && ($NumberLeft <= 3799) ) {

//      $CardName = 'American Express';

//      $ShouldLength = 15;

 

From looking at the example above you should be able to work out how to remove the options for other cards you don't want/need.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...