Created
July 17, 2014 18:33
-
-
Save ckpicker/75fecbc6209538b1daf2 to your computer and use it in GitHub Desktop.
Events Calendar 3.6 // Remove End Time in the Schedule Details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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