Skip to content

Commit

Permalink
make the new Stripe Express Checkout Element enabled by default in al…
Browse files Browse the repository at this point in the history
…l accounts (#3693)
  • Loading branch information
Mayisha authored Jan 8, 2025
1 parent 060fa87 commit 57aebf5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
* Dev - Add a GitHub Action workflow to run QIT E2E Integrations tests.
* Fix - Check billing interval and period to set in mandate options.
* Fix - Check order currency on pay for order page to display supported payment methods.
* Update - Make the new Stripe Express Checkout Element enabled by default in all accounts.

= 9.0.0 - 2024-12-12 =
* Fix - Fix 404 that happens when using ECE and 3D Secure auth is triggered.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-wc-stripe-feature-flags.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class WC_Stripe_Feature_Flags {
* @return bool
*/
public static function is_stripe_ece_enabled() {
return 'yes' === get_option( self::ECE_FEATURE_FLAG_NAME, 'no' );
return 'yes' === get_option( self::ECE_FEATURE_FLAG_NAME, 'yes' );
}

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

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

0 comments on commit 57aebf5

Please sign in to comment.