Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 82367

Translate the button

$
0
0

Replies: 0

Please, help.
I changed the text of woocommerce button “Add to cart” to russian with this code

add_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?


Viewing all articles
Browse latest Browse all 82367

Trending Articles