Disable Google and Apple Pay

hi

I have disable Google and Apple pay in Stripe as shown

But my checkout still show the Google and Apple Pay button as shown

BS-Capture3

How do I disable the Google and Apple Pay button? Thanks

Thank you for the screenshots! The form isn’t aware that the Apple Pay and Google Pay have been disabled in your Stripe account and is showing the button. You can hide it by adding this CSS to your project:

.ref-payment-apple-pay-google-pay {
  display: none !important;
}
2 Likes