Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jon2012

Archived
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Real Name
    Jon

jon2012's Achievements

  1. QUOTE (Landho @ Feb 2 2009, 09:28 PM) * Is it possible to use only the PayPal Express portion of this contribution? Hello, Long time reader first time poster. I know I'm late to the party with this answer but I think a lot of people will want to do this after trying to rely on Paypal as their sole payment processor and realizing that relying on Paypal for *anything* is a dangerous, dangerous game. (This is what I did and it would have been a nightmare to fully remove this module from all 6 of my websites and reinstall a different Paypal module.) There's a good shortcut I found to make this paypal WPP module work with just Express Checkout. All it does is remove the credit card entry details from the checkout payment screen for this module. The Google Checkout module does something almost identical. This DOES work with just Express Checkout - in other words you do NOT need the $30/month WPP to accept payments when you do this. In checkout_payment.php find this: $selection = $payment_modules->selection(); if (sizeof($selection) > 1) { Replace with this: $selection = $payment_modules->selection(); // Paypal WPP as Express Checkout Only Modificatioin // Skips Paypal direct payment credit card info for($i=0, $n=sizeof($selection); $i<$n; $i++) { if($selection[$i]['id'] == 'paypal_wpp') { array_splice($selection, $i, 1); break; } } //END paypal wpp credit card removal if (sizeof($selection) > 1) { It will look a lot different if you have the GCO module installed but it will still work the same (if you have GCO make sure $selection = $payment_modules->selection(); is only in there once). OK hope this helps someone, thanks! Jon
×
×
  • Create New...