I updated the events calendar Plugin to Version 2.0 and everything works perfect - except the query of the events.
Since the events became a custom post type, the query string must be updated. Actually i use this :
<?php query_posts( array( 'post_type' => 'tribe_events','posts_per_page' => 4, 'orderby' => 'date', 'order' => 'ASC', 'paged' => $pagenum ));?>
But i want to query only events whitch are in a special category i set up.
So, to extend the query, i need the name of the taxonomy !
<?php query_posts( array( 'post_type' => 'tribe_events', '? name ?' => 'name of the taxonomy i set up ' ) ); ?>
many thanks for help !