Howdy @resolutionsnorthwest,
Welcome to our support forums and thanks for reaching out to us! Hopefully I can help you out on this one 🙂
We are going to use the solution Barry provided for another customer. It’s a simple code snippet that you need to paste in the functions.php file of your theme – that file is located at ‘wp-content/themes/your_theme/’. The code is the following:
add_filter( 'tribe_events_event_schedule_details', 'custom_schedule_details' );
function custom_schedule_details() {
return tribe_get_start_date() . ' until ' . tribe_get_end_date();
}
Please let me know if you can manage to make it work,
Best,
Nico