Stripe Payments For WooCommerce by Checkout Plugins - Version 1.1.1

Version Description

WEDNESDAY, 22ND DECEMBER 2021 = * Fix: Express Checkout buttons were not appearing in live mode.

Download this release

Release Info

Developer brainstormworg
Plugin Icon 128x128 Stripe Payments For WooCommerce by Checkout Plugins
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

assets/js/payment-request.js CHANGED
@@ -1,6 +1,5 @@
1
  ( function( $ ) {
2
  const pubKey = cpsw_payment_request.public_key;
3
- const mode = cpsw_payment_request.mode;
4
  const ajaxUrl = cpsw_payment_request.ajax_url;
5
  const nonce = cpsw_payment_request.nonce;
6
  const isProductPage = cpsw_payment_request.is_product_page;
@@ -13,7 +12,7 @@
13
 
14
  let requestType = '';
15
 
16
- if ( '' === pubKey || ( 'live' === mode ) ) {
17
  return;
18
  }
19
 
1
  ( function( $ ) {
2
  const pubKey = cpsw_payment_request.public_key;
 
3
  const ajaxUrl = cpsw_payment_request.ajax_url;
4
  const nonce = cpsw_payment_request.nonce;
5
  const isProductPage = cpsw_payment_request.is_product_page;
12
 
13
  let requestType = '';
14
 
15
+ if ( '' === pubKey ) {
16
  return;
17
  }
18
 
checkout-plugins-stripe-woo.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Checkout Plugins - Stripe for WooCommerce
4
  * Plugin URI: https://www.checkoutplugins.com/
5
  * Description: Stripe for WooCommerce delivers a simple, secure way to accept credit card payments in your WooCommerce store. Reduce payment friction and boost conversions using this free plugin!
6
- * Version: 1.1.0
7
  * Author: Brainstorm Force
8
  * Author URI: https://brainstormforce.com/
9
  * License: GPLv2 or later
@@ -20,6 +20,6 @@ define( 'CPSW_FILE', __FILE__ );
20
  define( 'CPSW_BASE', plugin_basename( CPSW_FILE ) );
21
  define( 'CPSW_DIR', plugin_dir_path( CPSW_FILE ) );
22
  define( 'CPSW_URL', plugins_url( '/', CPSW_FILE ) );
23
- define( 'CPSW_VERSION', '1.1.0' );
24
 
25
  require_once 'autoloader.php';
3
  * Plugin Name: Checkout Plugins - Stripe for WooCommerce
4
  * Plugin URI: https://www.checkoutplugins.com/
5
  * Description: Stripe for WooCommerce delivers a simple, secure way to accept credit card payments in your WooCommerce store. Reduce payment friction and boost conversions using this free plugin!
6
+ * Version: 1.1.1
7
  * Author: Brainstorm Force
8
  * Author URI: https://brainstormforce.com/
9
  * License: GPLv2 or later
20
  define( 'CPSW_BASE', plugin_basename( CPSW_FILE ) );
21
  define( 'CPSW_DIR', plugin_dir_path( CPSW_FILE ) );
22
  define( 'CPSW_URL', plugins_url( '/', CPSW_FILE ) );
23
+ define( 'CPSW_VERSION', '1.1.1' );
24
 
25
  require_once 'autoloader.php';
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: brainstormforce
3
  Tags: stripe, credit card
4
  Requires at least: 5.4
5
  Tested up to: 5.8
6
- Stable tag: 1.1.0
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -55,6 +55,9 @@ NOTE: NOT to deactivate your old payment gateway plugin. Your old subscription's
55
 
56
  == Changelog ==
57
 
 
 
 
58
  = 1.1.0 – TUESDAY, 21ST DECEMBER 2021 =
59
  * New: Express Checkout
60
 
3
  Tags: stripe, credit card
4
  Requires at least: 5.4
5
  Tested up to: 5.8
6
+ Stable tag: 1.1.1
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
55
 
56
  == Changelog ==
57
 
58
+ = 1.1.1 – WEDNESDAY, 22ND DECEMBER 2021 =
59
+ * Fix: Express Checkout buttons were not appearing in live mode.
60
+
61
  = 1.1.0 – TUESDAY, 21ST DECEMBER 2021 =
62
  * New: Express Checkout
63