Well if you want “Central Time” to be added to the end of the schedule details you could certainly do something like this (you would add this code to your theme’s functions.php file):
add_filter( 'tribe_events_event_schedule_details', 'append_text_to_schedule_details' );
function append_text_to_schedule_details( $text ) {
return "$text Central Time";
}
If you are actually dealing with events in multiple time zones though or need more finely grained control then you’d need to think up a different approach (like I outlined above). Remember to check out our Themer’s Guide!
Hope that helps 🙂