- This topic has 1 reply, 2 voices, and was last updated 5 years, 5 months ago by .
Viewing 1 reply thread
Viewing 1 reply thread
- You must be logged in to reply to this topic.
Home › Forums › UM Switcher › UMS Product buttons
Is there a way to disable the override of the UMS Product buttons option? It seems to be playing a bit of funny business, but I cannot put my finger on it.
Hi Andrew,
You can override the WC button by adding these codes in your theme function.
add_filter(‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_cart_button_text’);
function woo_custom_cart_button_text() {
return __(‘Book Now’, ‘woocommerce’);
}
Let me know if that works. Thanks
Regards
Roy