Hello
Thanks but I am not looking to translate all website text. I am only looking to change the text from “add to cart” to “take My Money”. I did a google search and found some easy code such as
add_filter( 'add_to_cart_text', 'woo_custom_single_add_to_cart_text' ); // < 2.1
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_single_add_to_cart_text' ); // 2.1 +
function woo_custom_single_add_to_cart_text() {
return __( 'My Button Text', 'woocommerce' );
}
But I dont know if they work now as they are a bit old.
Isnt there a similar code to change the text without having to install the loco translate plugin? Regards.