Skip to content

Commit 57aebf5

Browse files
authored
make the new Stripe Express Checkout Element enabled by default in all accounts (#3693)
1 parent 060fa87 commit 57aebf5

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* Dev - Add a GitHub Action workflow to run QIT E2E Integrations tests.
3333
* Fix - Check billing interval and period to set in mandate options.
3434
* Fix - Check order currency on pay for order page to display supported payment methods.
35+
* Update - Make the new Stripe Express Checkout Element enabled by default in all accounts.
3536

3637
= 9.0.0 - 2024-12-12 =
3738
* Fix - Fix 404 that happens when using ECE and 3D Secure auth is triggered.

includes/class-wc-stripe-feature-flags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class WC_Stripe_Feature_Flags {
1414
* @return bool
1515
*/
1616
public static function is_stripe_ece_enabled() {
17-
return 'yes' === get_option( self::ECE_FEATURE_FLAG_NAME, 'no' );
17+
return 'yes' === get_option( self::ECE_FEATURE_FLAG_NAME, 'yes' );
1818
}
1919

2020
/**

readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,6 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
142142
* Dev - Add a GitHub Action workflow to run QIT E2E Integrations tests.
143143
* Fix - Check billing interval and period to set in mandate options.
144144
* Fix - Check order currency on pay for order page to display supported payment methods.
145+
* Update - Make the new Stripe Express Checkout Element enabled by default in all accounts.
145146

146147
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-stripe/trunk/changelog.txt).

0 commit comments

Comments
 (0)