Data time format in sidebar

I see that it uses the WP defaults - any way to not do that?
I’m showing the next 10 events in the sidebar - no need to show dates, just days of week and times. Don’t want to change the system defaults to make it happen - any coding “over-ride”?
Thanks

Hi,
you have to remove this ‘none’ option in scheduler admin panel “Custom fields” tab.
Scheduler plugin doesn’t create such option automatically, so you have only to remove it from the options list.

I’m sorry, this answer is from another topic.

Date format generation is made in file wp-content/plugins/event-calendar-scheduler/scheduler.php in function scheduler_sidebar:

function scheduler_sidebar() {
...
$start_date = date_i18n(get_option('date_format').' '.get_option('time_format'), $start_date);
...

You may replace it with any other code to change date format.