Hi Mark,
Welcome to our support forums, and thanks for reaching out!
One way to go on this can be to create an Event Category called ‘Exhibit’, then you can see the events for that category in ‘http://your_site_url/events/category/exhibit/’. To exclude it from other view you can add this snippet to the theme’s functions.php file -located at ‘wp-content/themes/your_theme/’:
add_action( 'tribe_events_pre_get_posts', 'exclude_events_category' );
function exclude_events_category( $query ) {
if ( !is_tax(Tribe__Events__Main::TAXONOMY) ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => Tribe__Events__Main::TAXONOMY,
'field' => 'slug',
'terms' => array('exhibit'),
'operator' => 'NOT IN'
)
));
}
return $query;
}
That should remove ‘exhibit’ events from every view, unless it’s the ‘exhibit’ category view.
Please try this out and let me know how it goes,
Best,
Nico