// 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 remove date filter on post type admin pages in WordPress
To remove the date filter on post type admin pages in WordPress, you can use the restrict_manage_posts action hook in your theme’s functions.php file. This