Hey Susan,
Sure thing! An option here would be to take advantage of the event categories to create some sort of “hidden” category. You could then use the following snippet in your theme’s functions.php file:
// Removes categories "dance" and "concert" from list and month views
add_action( 'pre_get_posts', 'exclude_events_category' );
function exclude_events_category( $query ) {
if ( $query->query_vars['eventDisplay'] == 'month' ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => Tribe__Events__Main::TAXONOMY,
'field' => 'slug',
'terms' => array('dance', 'concert'),
'operator' => 'NOT IN'
)
)
);
}
return $query;
}
You would replace the “terms” option in the array above with the slug for the category that you created for these hidden events. Then, you would just assign the events that you would like hidden from the calendar.
Let me know if this helps.
Thanks!