// 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 add BuddyPress private message link after author details
To add a BuddyPress private message link after the author details using functions.php, you can use the bp_activity_entry_meta action hook in your theme’s functions.php file