#andrea-skuola-google-pay
1 messages · Page 1 of 1 (latest)
No I use SetupIntent to let customers add more cards, so in this case is not in the payment flow
But just add a new card if the other is expired
for future payments
I meant our Checkout product, which can facilitate setting up cards via Setup Intents: https://stripe.com/docs/payments/save-and-reuse?platform=checkout
Or have you built your own payment flow?
i have built my own payment flow
this is from desktop
this is from mobile
I don't want the choice that appears on the top
Got it, you're using Payment Element. You can disable wallets (like Google Pay), sure: https://stripe.com/docs/js/elements_object/create_payment_element#payment_element_create-options-wallets
elements.create('payment', {googlePay: 'never'})
its like this to disable google pay?
elements.create("payment", {
wallets: {
googlePay: "never",
applePay: "never"
}
})
Yep, the 2nd one
It's just a Visa card, right?
yep, sometimes Visa or Mastercard
but they are prepaid or debit cards, not credit cards
thanks!