Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active July 17, 2021 04:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankschrijvers/65334b52dc9f0209382d060fd52ec26d to your computer and use it in GitHub Desktop.
Save frankschrijvers/65334b52dc9f0209382d060fd52ec26d to your computer and use it in GitHub Desktop.
Change add to cart button text
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Change add to cart button text single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'wps_custom_cart_button_text' );
function wps_custom_cart_button_text() {
return __( 'Buy Product', 'your_theme_text_domain' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment