Created
August 4, 2017 05:29
-
-
Save GeoffEW/464e290d85cc8de6d111bbd739c5e82e to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
function tribe_remove_time_single( $settings ) { | |
if ( is_single() ) { | |
$settings['time'] = false; | |
remove_filter( 'tribe_events_event_schedule_details_inner', array( 'Tribe__Events__Timezones', 'append_timezone' ), 10 ); | |
} | |
return $settings; | |
} | |
add_filter( 'tribe_events_event_schedule_details_formatting', 'tribe_remove_time_single' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment