Hello, Alexey!
There is an easy way to translate our themes using a “Loco Translate” plugin.
Please check the articles from the links below:
https://localise.biz/wordpress/plugin#guides
https://spyropress.com/knowledgebase/use-loco-translate-plugin-theme-translation.html
https://meridianthemes.net/translate-wordpress-theme-using-loco-translate/
https://youtu.be/3vj0k65DRhg?t=597
In your case, those texts can be also changed using the custom CSS codes below:
(Insert it into Customizing->General->Additional CSS )
/*Woocommerce buttons translations*/
.show_details_button,.agama-cart-item-desc,.agama-cart-action a.button{
text-indent: -9999px;
}
/* View Cart */
.agama-cart-action a.button:after{
text-indent: 0px;
float: left;
content: 'Your text';
}
/* Cart is empty */
.agama-cart-item-desc:after{
text-indent: 0px;
float: left;
content: 'Your text';
}
/*Details*/
.show_details_button:after{
text-indent: 0px;
float: right;
font-family: "FontAwesome";
line-height: 13px;
content: '\f0f6'' Your text';
}
https://prnt.sc/nalu8c
Change the “Your Text ” part per your wish.
Regards
This reply was modified 4 years, 2 months ago by Zex .