I installed it and I can't use the PayPal Payments Pro with it.
I installed it and I can't use the PayPal Payments Pro with it.
I've updated the plugin to v1.1.0 (just submitted to the Plugins area). I'd forgotten to include the license.txt file in the original release and have added some additional notification points to allow external customization. No need to uninstall/re-install; there are no changes to the payment method's configuration keys.
The updated version is now available for download in the Plugins area.
I've submitted v1.1.1 to the plugins for review; it includes the correction posted by DrByte here for the main paypalwpp module (handling of PayPal error 10486).
v1.1.1 is now available in the Plugins area for download.
In file tpl_shopping_cart_default.php is there only one line change
from;
if (defined('MODULE_PAYMENT_PAYPALWPP_STATUS') && MODULE_PAYMENT_PAYPALWPP_STATUS == 'True')
To;
if ( (defined('MODULE_PAYMENT_PAYPALWPP_STATUS') && MODULE_PAYMENT_PAYPALWPP_STATUS == 'True') || (defined('MODULE_PAYMENT_PAYPALWPP_V84_STATUS') && MODULE_PAYMENT_PAYPALWPP_V84_STATUS == 'True') ) { //-20131230-lat9-paypalwpp_v84-c
Learning Fast.
Eden Craft Supplies
The documentation with this module indicates that the "...display of an order's PayPal history now includes the entire history as part of the Customers->Orders->Edit Order display..." So a subsequent refund will show up as a second history listing.
But that is not happening in our implementation. The PP Express works perfectly except it only shows the initial charge in the "Order Edits History." Subsequent refunds do not appear.
We have made one modification to the module: in the modules/payment/paypal/paypalwpp.v84_admin_notification.php file, we changed all five instances of "customer_notification = 0" to -1 so that the paypal comments do not print on pack lists and invoices. Putting these back to 0 (no email) and then testing with a paypal purchase/ refund creates no improvement to the issue noted above.
We've winmerged all the other files and found them to be completely vanilla.
Any ideas? TIA