Skip to content

Instantly share code, notes, and snippets.

@elimn
Created August 2, 2016 03:49
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 elimn/ee4f74fe1b561148dc7cd7563c16d815 to your computer and use it in GitHub Desktop.
Save elimn/ee4f74fe1b561148dc7cd7563c16d815 to your computer and use it in GitHub Desktop.
MT | TEC | Remove event time from showing in List View
<?php
/**
* Removes time from List View
*/
function tribe_remove_time_list_view( $settings ) {
if( ! tribe_is_upcoming() && ! tribe_is_past() ) return $settings;
$settings[ 'time' ] = false;
return $settings;
}
add_filter( 'tribe_events_event_schedule_details_formatting', 'tribe_remove_time_list_view' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment