Hi Dario,
Thanks for reaching out to us ๐
Use the following snippet to change the label and placeholder of the search field in the events bar. Just paste it into your theme (or child theme) functions.php file, and change the text to the appropriate one:
/*
* Change the label and placeholder texts in Events Search Bar
*/
add_filter( 'tribe-events-bar-filters', 'modify_searchbar_label', 100 );
function modify_searchbar_label( array $filters ) {
if ( ! isset( $filters['tribe-bar-search'] ) ) return $filters;
$filters['tribe-bar-search']['caption'] = 'Search Cap';
$filters['tribe-bar-search']['html'] = str_replace( 'Search', 'Search Desc', $filters['tribe-bar-search']['html'] );
return $filters;
}
Please give it a try and let me know if it works for you,
Best,
Nico