I have the same issue as I would like to either hide the date or somehow get the date to span across two months.
Ny event should run from November through Dec. 31st, but only today’s date shows.
I had this problem, found this plugin; https://ww.wp.xz.cn/plugins/code-snippets/ and then in that plugin, inserted this code (make sure the <?php is on first line
// Changes past event views to reverse chronological order
function tribe_past_reverse_chronological ($post_object) {
$past_ajax = (defined( ‘DOING_AJAX’ ) && DOING_AJAX && $_REQUEST[‘tribe_event_display’] === ‘past’) ? true : false;
if(tribe_is_past() || $past_ajax) {
$post_object = array_reverse($post_object);
}
return $post_object;
}
add_filter(‘the_posts’, ‘tribe_past_reverse_chronological’, 100);
However, I will also add that I then updated the events calendar to version 4.9.03 and then deactivated the code above because I think the update worked out that problem. So guess I am saying update event calendar and if still doesn’t work in the right order, do the code snippet and use code above to reverse order.