I’ve added an additional taxonomy to tribe_events, called “neighborhood”. When at that taxonomy archive page, which uses taxonomy-neighborhood.php template in my theme, recurring events are not displayed (only one of the recurring events). The same happens on my search template. I’m currently using
while ( have_posts() ) : the_post();
to display the events.
Doing:
$taxonomy_events = tribe_get_events(array(
'eventDisplay' => 'upcoming',
'taxonomy' => get_query_var('taxonomy')
));
foreach($taxonomy_events as $post) {
// etc. etc.
seems to work, but the pagination (next/previous links) does not work.
Is there a way to paginate posts using get_tribe_events(), or a way to make the custom taxonomy archive behave correctly with recurring events?
thanks!