#shahanajoy
1 messages · Page 1 of 1 (latest)
Hi there 👋 you can suppress wallet payment methods via the wallets parameter when creating or updating the Payment Element:
https://stripe.com/docs/js/elements_object/create_payment_element#payment_element_create-options-wallets
You would set the value for the associated wallet to never
okie, Let me check that
onst options = {
mode: 'payment',
amount: Number(val),
currency: 'usd',
paymentMethodCreation: 'manual',
// Fully customizable with appearance API.
wallets: {
applePay: 'never',
googlePay: 'never'
},
appearance: {
theme: 'stripe'
},
so it could be like this right?
Yup
Thank you so much