Skip to content

Commit 870016f

Browse files
authored
Fix an issue preventing the new checkout experience to be enabled by default (#3699)
* Fix an issue preventing the new checkout experience to be enabled by default * Changelog and readme entries * Update readme and changelog entries * Restore original default value * Disable ECE migration script due conflict
1 parent 359162f commit 870016f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*** Changelog ***
22

33
= 9.1.0 - xxxx-xx-xx =
4+
* Fix - Fixes the new checkout experience not being enabled by default due to conflict with a migration.
45
* Fix - Prevents duplicated credit cards to be added to the customer's account through the My Account page, the shortcode checkout and the block checkout.
56
* Fix - Return to the correct page when redirect-based payment method fails.
67
* Fix - Show default recipient for Payment Authentication Requested email.

readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
111111
== Changelog ==
112112

113113
= 9.1.0 - xxxx-xx-xx =
114+
* Fix - Fixes the new checkout experience not being enabled by default due to conflict with a migration.
114115
* Fix - Prevents duplicated credit cards to be added to the customer's account through the My Account page, the shortcode checkout and the block checkout.
115116
* Fix - Return to the correct page when redirect-based payment method fails.
116117
* Fix - Show default recipient for Payment Authentication Requested email.

woocommerce-gateway-stripe.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ public function init() {
267267
require_once dirname( __FILE__ ) . '/includes/migrations/class-migrate-payment-request-data-to-express-checkout-data.php';
268268
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-account.php';
269269
new Allowed_Payment_Request_Button_Types_Update();
270-
new Migrate_Payment_Request_Data_To_Express_Checkout_Data();
270+
// TODO: Temporary disabling the migration as it has a conflict with the new UPE checkout.
271+
// new Migrate_Payment_Request_Data_To_Express_Checkout_Data();
271272

272273
$this->api = new WC_Stripe_Connect_API();
273274
$this->connect = new WC_Stripe_Connect( $this->api );

0 commit comments

Comments
 (0)