Hey Kristin,
Thank you for reaching out to us!
To achieve what you want, please add the following snippet to your theme’s functions.php file and replace “Events In” with the text you want:
function change_date_picker() {
$caption = 'Date';
if ( tribe_is_month() ) {
$caption = 'Events In';
} elseif ( tribe_is_list_view() ) {
$caption = 'Events From';
} elseif ( tribe_is_day() ) {
$caption = 'Day Of';
}
return $caption;
}
add_filter( 'tribe_bar_datepicker_caption', 'change_date_picker' );
I hope this helps! If you have any other questions at all please feel free to let me know and I’d be happy to help as best I can!
Cheers,
Patricia