Created
August 2, 2016 03:49
-
-
Save elimn/ee4f74fe1b561148dc7cd7563c16d815 to your computer and use it in GitHub Desktop.
MT | TEC | Remove event time from showing in List View
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
<?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