Skip to content

Instantly share code, notes, and snippets.

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 vagelisp/dabd609a79ae5bad8f6ba75f9a702e07 to your computer and use it in GitHub Desktop.
Save vagelisp/dabd609a79ae5bad8f6ba75f9a702e07 to your computer and use it in GitHub Desktop.
//remove the text {PHP}
add_filter( 'woocommerce_product_add_to_cart_text', 'change_text_woo' );
function change_text_woo() {
return;
}
//add the icon {CSS}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:after {
content: "\f111";
font-family: dashicons;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment