Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created May 26, 2014 14:04
Show Gist options
  • Select an option

  • Save ckpicker/c313f3677a13b866035c to your computer and use it in GitHub Desktop.

Select an option

Save ckpicker/c313f3677a13b866035c to your computer and use it in GitHub Desktop.
Events Calendar 3.5 // Remove 'End Time' from List View
add_filter('tribe_events_event_schedule_details_formatting', 'change_schedule_formatting');
function change_schedule_formatting( array $format ) {
$format['show_end_time'] = false; // This removes the end time
return $format;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment