Skip to content

Commit 3de2e96

Browse files
authored
Revert "fix: stripe link on card form" (#11028)
1 parent 5414080 commit 3de2e96

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

changelog.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
= 9.9.0 - 2025-09-03 =
44
* Fix - fix: adding some missing i18n wrappers
5-
* Fix - fix: prevent Stripe Link to be shown on the checkout form
65
* Fix - Fix checks for the billing details for the BNPL methods on the Pay for Order page.
76
* Fix - Fixed WooPay terms and conditions text for merchants using blocks checkout.
87
* Fix - Fix margins for phone number input and add styling to match other inputs

client/checkout/classic/payment-processing.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ async function createStripePaymentElement(
290290
wallets: {
291291
applePay: 'never',
292292
googlePay: 'never',
293-
link: 'never',
294293
},
295294
} );
296295

client/checkout/utils/__tests__/upe.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ describe( 'getStripeElementOptions', () => {
639639
},
640640
},
641641
terms: { bancontact: 'always', card: 'always', eps: 'always' },
642-
wallets: { applePay: 'never', googlePay: 'never', link: 'never' },
642+
wallets: { applePay: 'never', googlePay: 'never' },
643643
} );
644644
} );
645645

@@ -687,7 +687,7 @@ describe( 'getStripeElementOptions', () => {
687687
},
688688
},
689689
terms: { bancontact: 'always', card: 'always', eps: 'always' },
690-
wallets: { applePay: 'never', googlePay: 'never', link: 'never' },
690+
wallets: { applePay: 'never', googlePay: 'never' },
691691
} );
692692
} );
693693

@@ -727,7 +727,7 @@ describe( 'getStripeElementOptions', () => {
727727
},
728728
},
729729
terms: { card: 'never' },
730-
wallets: { applePay: 'never', googlePay: 'never', link: 'never' },
730+
wallets: { applePay: 'never', googlePay: 'never' },
731731
} );
732732
} );
733733
} );

client/checkout/utils/upe.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ export const getStripeElementOptions = (
258258
wallets: {
259259
applePay: 'never',
260260
googlePay: 'never',
261-
link: 'never',
262261
},
263262
};
264263

readme.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ You can read our Terms of Service and other policies [here](https://woocommerce.
8989

9090
= 9.9.0 - 2025-09-03 =
9191
* Fix - fix: adding some missing i18n wrappers
92-
* Fix - fix: prevent Stripe Link to be shown on the checkout form
9392
* Fix - Fix checks for the billing details for the BNPL methods on the Pay for Order page.
9493
* Fix - Fixed WooPay terms and conditions text for merchants using blocks checkout.
9594
* Fix - Fix margins for phone number input and add styling to match other inputs

0 commit comments

Comments
 (0)