Good to hear!
Here’s a basic snippet to inspect / alter the query parameters…
function filter_search_query ( $query ) {
if ( ! empty( $_REQUEST['tribe-bar-search'] ) ) {
//print_r($query);
}
return $query;
}
add_filter( 'tribe_events_pre_get_posts', 'filter_search_query');
If you uncomment the print_r line, you’ll get a dump of the query parameters. To view this use the browser console network tab and inspect the ajax call for search.
Please let me know if you follow,
Best,
Nico