Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove "Remember me everywhere" option from Stripe checkout form

Tags:

I am using Stripe Payment processor on my site.

I have integrated the following form for Stripe Checkout.

https://stripe.com/docs/checkout#integration-simple

I want to remove the "Remember me everywhere" option from the form.

like image 972
user2731645 Avatar asked Mar 05 '14 08:03

user2731645


People also ask

How do I customize my Checkout Stripe?

You can customize the look and feel of Checkout in the Stripe Dashboard. Go to Branding Settings where you can: Upload a logo or icon. Customize the Checkout page's background color, button color, font, and shapes.

Is Stripe Checkout deprecated?

Stripe will not be updating the Stripe Checkout modal to comply with Strong Customer Authentication (SCA) and as a result they no longer recommend using that integration.

What does Checkout with Stripe mean?

Use a low-code integration to build a customized payment page, hosted on Stripe. Checkout is a low-code payment integration that creates a customizable payment page so you can quickly collect payments on desktop and mobile devices.


1 Answers

You can disable the 'Remember me' checkbox now! Code varies slightly depending on your integration.

Custom: allowRememberMe: false

Simple: data-allow-remember-me="false"

More in our docs

like image 178
user3250670 Avatar answered Sep 17 '22 16:09

user3250670