Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stripe checkout PAY button change text

How to change the text in a stripe checkout modal box from PAY to something else.

I know I can do custom text on the button that pops up the modal.

description: 'ADD CARD',
label:'ADD CARD',

But on the actual modal window. It still just says PAY on the button. I want it to say ADD CARD.

like image 280
Kylie Avatar asked Feb 14 '17 22:02

Kylie


People also ask

How do you customize the Stripe checkout button?

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.

How do I customize my Stripe payment link?

Can I customize the URL of a payment link? Stripe doesn't support the ability to customize the payment link URL, but you can use a 3rd-party URL shortener to redirect to the payment link instead.

What's the difference between Stripe and Stripe checkout?

You may be wondering what the difference is between Stripe and Stripe Checkout. While our “regular” Stripe Payments integration allows users to enter credit card payment information directly on your form, Stripe Checkout seamlessly redirects users to the Stripe website to process payment.

Is Stripe checkout deprecated?

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.


1 Answers

You can customize that with the data-panel-label or panelLabel option: https://stripe.com/docs/checkout#optional

like image 185
floatingLomas Avatar answered Sep 23 '22 17:09

floatingLomas