Summary:
List doesn't show upcoming events
Detailed Description:
When you choose to show only upcoming events ($show = 'upcoming') it will not
work. The problem is in the file class.EventsManager_events_ops.php. On line 95
u see:
$query .= "e.end_datetime > " . $now;
this needs to be:
$query .= "e.start_datetime > " . $now;