Hi Sandro,
Ok I see what’s going on now. I’ll need to see the code you are using for http://develop.primediart.com/project/Sandroz/gudauri/ but first try this. Using the pre_get_posts() query filter, you should be able to filter the query for the calendar on that page like so:
add_action( 'pre_get_posts', 'exclude_events_category' );
function exclude_events_category( $query ) {
if ( is_page('the-page-with-the-query') ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => TribeEvents::TAXONOMY,
'field' => 'slug',
'terms' => array('2012'),
'operator' => 'IN'
)
)
);
}
return $query;
}
Put that in your theme’s functions.php file and change the is_page conditional to whatever the page is and then modify the tax_query to only include or exclude the categories you want to display there.
Does that help?
– Jonah