Hi @prixer
You can use a translator plugin or translate manually.
I suggest using a translator plugin
Thread Starter
Prixer
(@prixer)
Where is the string CHECKOUT located_?
Not sure which specific string you refer to.
It might be coming from Woocommerce and not from the plugin
ΒΏCan you share a screenshot?
Thread Starter
Prixer
(@prixer)
Here is a screen shot
https://pasteboard.co/KerGuhZ.jpg
Tried translating plugin strings… Did not find this one
Flatsome theme
All updated
-
This reply was modified 4 years, 4 months ago by
Prixer.
I see rest of content is already translated. So it looks like there’s a failure on your translation solution.
In this case, you’ll need to translate manually with a CSS / PHP script
CSS: Use the pseudo selector
stackoverflow.com/questions/7896402/how-can-i-replace-text-with-css
PHP:
https://www.speakinginbytes.com/2013/10/gettext-filter-wordpress/
Thread Starter
Prixer
(@prixer)
Thank you very much
This done the job:
a.added_to_cart {
visibility: hidden;
}
a.added_to_cart:after {
content:’GO TO PAYMENT’;
visibility: visible;
display: inline-block;
font-size: 1.4em;
margin-right: -70px;
font-weight: bold;
border: 2px solid currentColor;
padding: 4px;
color: orange;
}
-
This reply was modified 4 years, 4 months ago by
Prixer.
thanks for the update @prixer