Hi there,
maybe its still interesting for someone,
I was able to solve this question
( https://theeventscalendar.com/support/forums/topic/order-of-events-showing-events-by-post-date/#dl_post-1057609 )
by using this code:
<?php
$paged = ( get_query_var('page') ) ? get_query_var('page') : 1;
$query_args = array(
'suppress_filters' => true,
'post_type' => 'tribe_events',
'order' => 'DESC',
'posts_per_page' => -1,
'paged' => $paged,
'page' => $paged,
'meta_query' => array(
array(
'key' => '_EventEndDate',
'value' => date("Y-m-d"),
'compare' => '>=',
'type' => 'NUMERIC,'
)
),
);
$the_query = new WP_Query( $query_args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
Best
Marion