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 sakilimran/e97159b5a0ae13d6f67ec6930fb308d6 to your computer and use it in GitHub Desktop.
Save sakilimran/e97159b5a0ae13d6f67ec6930fb308d6 to your computer and use it in GitHub Desktop.
<?php
// change "Add to Cart" text in single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );
function woo_custom_cart_button_text() {
return __( 'Buy Now', 'woocommerce' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment