Hello,
I want to have all my events display the start time, but no end time. I managed to remove the end time from displaying on the list, month, week, etc. views by adding the following snippet to my child theme’s functions.php:
add_filter( ‘tribe_events_event_schedule_details_formatting’, ‘change_schedule_format’ );
function change_schedule_format( array $format ) {
$format[‘show_end_time’] = false;
return $format;
}
Now, when I click on an event to view the details, the sidebar is still displaying the start and end time. I’m using the default events template and like everything about except I want to remove the end time. How can I go about doing that?
Thanks.