I have, yes.
I know it has something to do with the following chunk of code (from events-calendar-pro/views/events-advanced-list-load-widget-display.php) but my PHP skills aren’t up to scratch to write it myself.
[code]
ID, $start );
if($event->AllDay && $start) {
echo ‘ (‘.__(‘All Day’,’tribe-events-calendar-pro’).’)’;
} else {
if ( $end && $event->EndDate != ”) {
echo ” . __(‘Ends’, ‘tribe-events-calendar-pro’) . ‘ ‘;
echo tribe_get_end_date($post->ID);
}
}
?>
[/code]
I would say that it would need another if statement to say
if startdate < currentdate {
echo currentdate }
else {
echo startdate }