Translate buy it now button (Refresh theme)

Need help translating the “buy it now” button.

Store:

https://planeta.is

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

2 Likes

@Sighouf

Try below code


If works then let me know.

Best Regards !

This did not work :disappointed_face: But thank you for your effort.

I got a solution from another reply.

Works, thank you so much.

1 Like