WooCommerce PayPal Express Checkout Payment Gateway - Version 1.6.14

Version Description

  • 2019-05-08 =
  • Fix - Failing checkout when no addons are used
Download this release

Release Info

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

Code changes from version 1.6.12 to 1.6.14

changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  *** Changelog ***
2
 
 
 
 
3
  = 1.6.12 - 2019-05-08 =
4
  * Fix - Better handling of virtual subscriptions when billing address is not required
5
  * Fix - Prevent errors showing when purchasing a virtual product with WP_DEBUG enabled
1
  *** Changelog ***
2
 
3
+ = 1.6.14 - 2019-05-08 =
4
+ * Fix - Failing checkout when no addons are used
5
+
6
  = 1.6.12 - 2019-05-08 =
7
  * Fix - Better handling of virtual subscriptions when billing address is not required
8
  * Fix - Prevent errors showing when purchasing a virtual product with WP_DEBUG enabled
includes/class-wc-gateway-ppec-with-spb.php CHANGED
@@ -19,9 +19,6 @@ class WC_Gateway_PPEC_With_SPB extends WC_Gateway_PPEC_With_PayPal {
19
  * Display PayPal button on the checkout page order review.
20
  */
21
  public function display_paypal_button() {
22
- if ( ! $this->should_display_buttons_at_checkout() ) {
23
- return;
24
- }
25
  wp_enqueue_script( 'wc-gateway-ppec-smart-payment-buttons' );
26
  ?>
27
  <div id="woo_pp_ec_button_checkout"></div>
19
  * Display PayPal button on the checkout page order review.
20
  */
21
  public function display_paypal_button() {
 
 
 
22
  wp_enqueue_script( 'wc-gateway-ppec-smart-payment-buttons' );
23
  ?>
24
  <div id="woo_pp_ec_button_checkout"></div>
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: 5.2.0
6
- Stable tag: 1.6.12
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -101,6 +101,9 @@ Please use this to inform us about bugs, or make contributions via PRs.
101
 
102
  == Changelog ==
103
 
 
 
 
104
  = 1.6.12 - 2019-05-08 =
105
  * Fix - Better handling of virtual subscriptions when billing address is not required
106
  * Fix - Prevent errors showing when purchasing a virtual product with WP_DEBUG enabled
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: 5.2.0
6
+ Stable tag: 1.6.14
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
101
 
102
  == Changelog ==
103
 
104
+ = 1.6.14 - 2019-05-08 =
105
+ * Fix - Failing checkout when no addons are used
106
+
107
  = 1.6.12 - 2019-05-08 =
108
  * Fix - Better handling of virtual subscriptions when billing address is not required
109
  * Fix - Prevent errors showing when purchasing a virtual product with WP_DEBUG enabled
woocommerce-gateway-paypal-express-checkout.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PayPal Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Checkout (https://www.paypal.com/us/webapps/mpp/paypal-checkout).
6
- * Version: 1.6.12
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2018 WooCommerce / PayPal.
@@ -27,7 +27,7 @@ if ( ! defined( 'ABSPATH' ) ) {
27
  exit; // Exit if accessed directly
28
  }
29
 
30
- define( 'WC_GATEWAY_PPEC_VERSION', '1.6.12' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.
3
  * Plugin Name: WooCommerce PayPal Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Checkout (https://www.paypal.com/us/webapps/mpp/paypal-checkout).
6
+ * Version: 1.6.14
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2018 WooCommerce / PayPal.
27
  exit; // Exit if accessed directly
28
  }
29
 
30
+ define( 'WC_GATEWAY_PPEC_VERSION', '1.6.14' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.