Thanks for the patience while I worked on this Josh!
Please try pasting the following code in your theme’s (or child theme’s) functions.php file:
/* Tribe, limit tribe bar date search to one day */
add_action( 'tribe_events_pre_get_posts', function( $query ) {
$ajax_or_main = ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || $query->is_main_query();
if ( ! $ajax_or_main || empty( $_REQUEST['tribe-bar-date'] ) ) {
return;
}
if ( ! preg_match( '/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/', $_REQUEST['tribe-bar-date'], $matches ) ) {
return;
}
$end_date = date('Y-m-d', strtotime( $matches[0] . ' +1 day') );
$query->set( 'end_date', $end_date);
} );
Please let me know if it works for you,
Best,
Nico