Translate the button
-
Please, help.
I changed the text of woocommerce button “Add to cart” to russian with this codeadd_filter( ‘add_to_cart_text’, ‘woo_custom_product_add_to_cart_text’ ); // < 2.1
add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woo_custom_product_add_to_cart_text’ ); // 2.1 +function woo_custom_product_add_to_cart_text() {
return __( ‘В корзину’, ‘woocommerce’ );
}
And now i have this both in russian and english versions. How can i also change the text in english version?
The topic ‘Translate the button’ is closed to new replies.