We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5414080 commit 3de2e96Copy full SHA for 3de2e96
changelog.txt
@@ -2,7 +2,6 @@
2
3
= 9.9.0 - 2025-09-03 =
4
* Fix - fix: adding some missing i18n wrappers
5
-* Fix - fix: prevent Stripe Link to be shown on the checkout form
6
* Fix - Fix checks for the billing details for the BNPL methods on the Pay for Order page.
7
* Fix - Fixed WooPay terms and conditions text for merchants using blocks checkout.
8
* Fix - Fix margins for phone number input and add styling to match other inputs
client/checkout/classic/payment-processing.js
@@ -290,7 +290,6 @@ async function createStripePaymentElement(
290
wallets: {
291
applePay: 'never',
292
googlePay: 'never',
293
- link: 'never',
294
},
295
} );
296
client/checkout/utils/__tests__/upe.test.js
@@ -639,7 +639,7 @@ describe( 'getStripeElementOptions', () => {
639
640
641
terms: { bancontact: 'always', card: 'always', eps: 'always' },
642
- wallets: { applePay: 'never', googlePay: 'never', link: 'never' },
+ wallets: { applePay: 'never', googlePay: 'never' },
643
644
645
@@ -687,7 +687,7 @@ describe( 'getStripeElementOptions', () => {
687
688
689
690
691
692
693
@@ -727,7 +727,7 @@ describe( 'getStripeElementOptions', () => {
727
728
729
terms: { card: 'never' },
730
731
732
733
client/checkout/utils/upe.js
@@ -258,7 +258,6 @@ export const getStripeElementOptions = (
258
259
260
261
262
263
};
264
readme.txt
@@ -89,7 +89,6 @@ You can read our Terms of Service and other policies [here](https://woocommerce.
89
90
91
92
93
94
95
0 commit comments