// Disable search in WordPress - More snippets at wpunplugged.com
add_filter('woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text');
function woo_custom_cart_button_text() {
return __('Book Now', 'woocommerce');
}
How to change phone number not being a required field in WooCommerce
To make the phone number field not required in WooCommerce using the functions.php file, you can use the woocommerce_billing_fields filter hook. This hook allows you