Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created July 17, 2014 18:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/75fecbc6209538b1daf2 to your computer and use it in GitHub Desktop.
Save ckpicker/75fecbc6209538b1daf2 to your computer and use it in GitHub Desktop.
Events Calendar 3.6 // Remove End Time in the Schedule Details
add_filter( 'tribe_events_event_schedule_details_formatting', 'remove_end_time', 10, 2);
function remove_end_time( $formatting_details ) {
$formatting_details['show_end_time'] = 0;
return $formatting_details;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment