I am using regular categories for events (instead of events categories, see code below). Everything works fine except that when I click on a category assigned to some event, the category page comes up empty. I am guessing that it is looking through regular posts and not tribe_events. Checking the ‘Add events to main loop’ box does not help.
Any idea how to fix that?
// Make events support regular categories
add_action( 'init', 'wpa_categories_for_events' );
function wpa_categories_for_events(){
register_taxonomy_for_object_type( 'category', 'tribe_events' );
}