Need help translating the “buy it now” button.
Store:
Tried following some other solutions like pasting this code in the theme.liquid before the /body but it doesn’t work
Need help translating the “buy it now” button.
Store:
Tried following some other solutions like pasting this code in the theme.liquid before the /body but it doesn’t work
Hi @Sighouf ,
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.css->paste below code at the bottom of the file:
html[lang="en"] button.shopify-payment-button__button {
font-size: 0;
}
html[lang="en"] button.shopify-payment-button__button:after {
content: "Buy now";
font-size: 1.5rem;
position: static;
}
html[lang="is-IS"] button.shopify-payment-button__button {
font-size: 0;
}
html[lang="is-IS"] button.shopify-payment-button__button:after {
content: "Kaupa strax";
font-size: 1.5rem;
position: static;
}
I hope it would help you
Best regards,
Richard | PageFly
This did not work But thank you for your effort.
I got a solution from another reply.
Works, thank you so much.