Hi David,
If it’s the placeholder text you wish to change then there are a few ways to do that, one of which would be adding a short snippet like this one to your theme’s functions.php file or some other suitable place:
function event_bar_modify_placeholder_text( array $filters ) {
foreach ( $filters as &$single_filter ) {
$single_filter['html'] = str_replace(
'placeholder="Date"',
'placeholder="Something else"',
$single_filter['html'] );
}
return $filters;
}
add_filter( 'tribe-events-bar-filters', 'event_bar_modify_placeholder_text', 100 );
You could of course extend this to change other things, besides the “Date” placeholder text.
If you prefer a solution that doesn’t require custom code then you might consider using a plugin such as Say What, however that would typically have a side effect of changing the word everywhere rather than this specific location.
I hope that helps!