WooCommerce - change add to cart button text on product archives
add_filter( 'add_to_cart_text', 'woo_custom_cart_button_text' ); // < 2.1 | |
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 + | |
function woo_custom_cart_button_text() { | |
return __( 'My Button Text', 'woocommerce' ); | |
} |
This comment has been minimized.
This comment has been minimized.
Please help! How to change "select options" for variable products in new wc? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Is there some way to replace the "add to cart" button text by some Russian one (Russian text typed in Russian symbols)? The way described above gives the unrecognizable symbols.