Hola Juan, como estas?
Bienvenido a nuestro foro de soporte!
Para modificar el display de la fecha en el widget deberás crear un template override (ver más en themer’s guide) del archivo wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/single-event.php y modificar la linea 52 donde la fecha es impresa:
// original
<?php echo tribe_events_event_schedule_details(); ?>
// modificar por
<?php echo tribe_get_start_date( null, false, get_option( 'time_format' ) ) . tribe_get_option( 'timeRangeSeparator', ' - ' ) . tribe_get_end_date( null, false, get_option( 'time_format' ) ); ?>
Eso imprimirá la hora de comienzo y finalización del evento, de forma básica. Si quieres contemplar otras situaciones mas complejas deberías revisar el código de la función tribe_events_event_schedule_details en wp-content/plugins/the-events-calendar/scr/Tribe/functions/template-tags/general.php linea 907.
Espero esto sirva de ayuda!
Saludos,
Nico