Skip to content

Instantly share code, notes, and snippets.

@thegdshop
Created March 20, 2012 22:08
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thegdshop/2141771 to your computer and use it in GitHub Desktop.
Save thegdshop/2141771 to your computer and use it in GitHub Desktop.
WooCommerce - Change add to cart button text
<?php
add_filter('single_add_to_cart_text', 'woo_custom_cart_button_text');
function woo_custom_cart_button_text() {
return __('My Button Text', 'woocommerce');
}
?>
@technologers
Copy link

hey peternortefb..

same error is occur with my site and solved it.
you can go to ur cpanel and then open function.php through file manager then delete the code which u pasted..

problem solved

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment