Hey John,
While removing the end time from tooltips is quite tricky, you can reduce the date and time displays elsewhere by doing two things. First is to just use a bit of Custom CSS – add code like the following to the bottom of your theme’s style.css file:
.tribe-events-schedule .endtime.dtend {
display: none !important;
}
This will still leave the “-” separator, however, which you can’t target with CSS, so for that you’ll have to add code like the following to your theme’s functions.php file:
add_action( 'tribe_events_event_schedule_details_inner', 'tribe_support_1001350' );
function tribe_tribe_support_1001350( $inner ) {
return str_replace( '-', '', $inner );
}
We don’t offer support for customizations here, so I hope this helps and hope you can play around with it enough on your own to pull off a satisfactory customization. If you’re interested in removing end time/date info from tooltips, unfortunately the simplest way I can think of for doing that is to customize the tooltip template file directly.
You can learn more about how to do that in general here → https://theeventscalendar.com/knowledgebase/themers-guide/
Best of luck with your customizations!
George