WooCommerce PayPal Express Checkout Payment Gateway - Version 1.4.6

Version Description

  • Fix - Coupon related PayPal error 10413.
Download this release

Release Info

Developer bor0
Plugin Icon 128x128 WooCommerce PayPal Express Checkout Payment Gateway
Version 1.4.6
Comparing to
See all releases

Code changes from version 1.4.5 to 1.4.6

includes/class-wc-gateway-ppec-client.php CHANGED
@@ -480,7 +480,7 @@ class WC_Gateway_PPEC_Client {
480
 
481
  $items = array();
482
  foreach ( WC()->cart->cart_contents as $cart_item_key => $values ) {
483
- $amount = round( $values['line_subtotal'] / $values['quantity'] , $decimals );
484
 
485
  if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
486
  $name = $values['data']->post->post_title;
480
 
481
  $items = array();
482
  foreach ( WC()->cart->cart_contents as $cart_item_key => $values ) {
483
+ $amount = round( $values['line_total'] / $values['quantity'] , $decimals );
484
 
485
  if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
486
  $name = $values['data']->post->post_title;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, woothemes, akeda, dwainm, royho, allendav, slash1andy,
3
  Tags: ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, store, sales, sell, shop, shopping, cart, checkout, configurable, paypal
4
  Requires at least: 4.4
5
  Tested up to: 4.9.0
6
- Stable tag: 1.4.5
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -85,6 +85,9 @@ https://gist.github.com/mikejolley/ad2ecc286c9ad6cefbb7065ba6dfef48
85
 
86
  == Changelog ==
87
 
 
 
 
88
  = 1.4.5 =
89
  * Fix - Title/Description fields in the settings should appear based on Enable PayPal Express Checkout.
90
  * Add - Invoice Prefix now has the ability to be empty.
3
  Tags: ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, store, sales, sell, shop, shopping, cart, checkout, configurable, paypal
4
  Requires at least: 4.4
5
  Tested up to: 4.9.0
6
+ Stable tag: 1.4.6
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
85
 
86
  == Changelog ==
87
 
88
+ = 1.4.6 =
89
+ * Fix - Coupon related PayPal error 10413.
90
+
91
  = 1.4.5 =
92
  * Fix - Title/Description fields in the settings should appear based on Enable PayPal Express Checkout.
93
  * Add - Invoice Prefix now has the ability to be empty.
woocommerce-gateway-paypal-express-checkout.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PayPal Express Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Express Checkout (https://www.paypal.com/us/webapps/mpp/express-checkout).
6
- * Version: 1.4.5
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2017 WooCommerce / PayPal.
@@ -27,7 +27,7 @@ if ( ! defined( 'ABSPATH' ) ) {
27
  exit; // Exit if accessed directly
28
  }
29
 
30
- define( 'WC_GATEWAY_PPEC_VERSION', '1.4.5' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.
3
  * Plugin Name: WooCommerce PayPal Express Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Express Checkout (https://www.paypal.com/us/webapps/mpp/express-checkout).
6
+ * Version: 1.4.6
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2017 WooCommerce / PayPal.
27
  exit; // Exit if accessed directly
28
  }
29
 
30
+ define( 'WC_GATEWAY_PPEC_VERSION', '1.4.6' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.