You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.txt
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,10 @@
1
1
*** Changelog ***
2
2
3
3
= 9.5.0 - xxxx-xx-xx =
4
+
* Fix - Fixes the listing of payment methods on the classic checkout when the Optimized Checkout is enabled.
5
+
* Fix - Fixes the availability of WeChat Pay when the Optimized Checkout is enabled on the block checkout. Removes it from the classic/shortcode checkout to avoid issues.
6
+
* Dev - Renames all references to "Smart Checkout" and "Single Payment Element" (and "SPE") to "Optimized Checkout" (and "OC"), following the feature rebranding.
7
+
* Tweak - Updates the "Smart Checkout" setting name to "Optimized Checkout", and the description accordingly.
4
8
* Fix - Checks for the existence of the WC_Stripe_Feature_Flags class before including it during extension initialization.
5
9
* Dev - Implements the new Stripe order class into the new checkout experience files.
6
10
* Dev - Splits the code coverage GitHub Actions Workflow into two separate actions.
@@ -20,6 +24,9 @@
20
24
* Fix - Prevents fatal errors for cases where we fail to load product details
21
25
* Fix - Address an edge case with webhook URL comparisons
22
26
* Fix - Show correct gateway name in non payments settings pages.
27
+
* Update - Add support for customer order notes and express checkout
28
+
* Dev - Minor fix to e2e setup code
29
+
* Dev - Make PHP error log from Docker container available in docker/logs/php/error.log
Copy file name to clipboardExpand all lines: client/blocks/upe/upe-deferred-intent-creation/payment-elements.js
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ const PaymentElements = ( {
135
135
},
136
136
};
137
137
138
-
if(getBlocksConfiguration()?.isSPEEnabled){
138
+
if(getBlocksConfiguration()?.isOCEnabled){
139
139
options={
140
140
...options,
141
141
...{
@@ -152,19 +152,19 @@ const PaymentElements = ( {
152
152
getPaymentMethodTypes(paymentMethodId),
153
153
},
154
154
};
155
-
}
156
155
157
-
// If the cart contains a subscription or the payment method supports saving, we need to use off_session setup so Stripe can display appropriate terms and conditions.
// If the cart contains a subscription or the payment method supports saving, we need to use off_session setup so Stripe can display appropriate terms and conditions.
0 commit comments