// 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');
}
Pages & posts
How to remove attribute title in WordPress
To remove the title attribute from elements in WordPress, you can use the the_title filter in your theme’s functions.php file. Here’s an example of how