How can I alter the 'Buy It Now' button text?

Hello,

how can i change the text from the buy it now button?

The add to cart was easy. (on the setting) but i cant find how can i change this buy it now.

Thanks

@Markus96

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi @Markus96 ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

Welcome to shopify community.

Please share your store URL and if your store is password protected then please provide password too.

Thank you.

Www.edelhaare.de

@Markus96

thanks

If you’re comfortable working with coding languages (eg. HTML, JavaScript, CSS, and Liquid), then you can try to follow the custom coding provided also this text work only one language

Where can I find this in code?

Hi @Markus96 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css->paste below code at the bottom of the file:
.product-form__buttons button.shopify-payment-button__button {
    position: relative;
    font-size: 0 !important;
}

.product-form__buttons button.shopify-payment-button__button:before {
    content: "Buy it now";
    position: static !important;
    font-size: 1.4rem;
}

NOTE: You can content “Buy it now” by text you want to match your theme.

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.