[Plugin: WooCommerce – excelling eCommerce] change button text – select option
-
I want to change the button text from “select options” to something else, like “purchase” or “choose size” – see link below for an example
https://marcue.com.au/womens-handmade-leather-shoes-light-blue-double-brogue/Under Woo Commerce Docs there is an article which describes changing the add to cart button text as follows:
<?phpadd_filter(‘single_add_to_cart_text’, ‘woo_custom_cart_button_text’);
function woo_custom_cart_button_text() {
return __(‘My Button Text’, ‘woocommerce’);
}
Problem is where do I put it? And, is this the solution Im looking for?
- The topic ‘[Plugin: WooCommerce – excelling eCommerce] change button text – select option’ is closed to new replies.