Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active December 16, 2015 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameskoster/5494524 to your computer and use it in GitHub Desktop.
Save jameskoster/5494524 to your computer and use it in GitHub Desktop.
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' );
}
@Evgeny-Ru
Copy link

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.

@webprom
Copy link

webprom commented Mar 8, 2014

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