Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakilimran/60edf1d5762147ad770b2cb284e9c2ba to your computer and use it in GitHub Desktop.
Save sakilimran/60edf1d5762147ad770b2cb284e9c2ba to your computer and use it in GitHub Desktop.
<?php
// change "Add to Cart" text in archive product
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_archive_custom_cart_button_text' ); // 2.1 +
function woo_archive_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