Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save plugin-republic/d5a2e1c9e060ff0085f288afe4cb8567 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/d5a2e1c9e060ff0085f288afe4cb8567 to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: woocommerce_product_single_add_to_cart_text.
* Modify the text displayed on the 'Add to cart' button.
*/
function plugin_republic_product_single_add_to_cart_text( $text, $product ) {
// Modify the $text here
return $text;
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'plugin_republic_product_single_add_to_cart_text', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment