function my_tribe_events_register_event_type_args( $args ) {
// Exclude from search
$args['exclude_from_search'] = true;
// Return args
return $args;
}
add_filter( 'tribe_events_register_event_type_args', 'my_tribe_events_register_event_type_args' );
Snippets: Exclude Events From Search Results
All PHP snippets should be added via a child theme's functions.php file.