Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created August 4, 2017 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GeoffEW/464e290d85cc8de6d111bbd739c5e82e to your computer and use it in GitHub Desktop.
Save GeoffEW/464e290d85cc8de6d111bbd739c5e82e to your computer and use it in GitHub Desktop.
<?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