Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Last active June 30, 2020 15:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jesseeproductions/a467b28a8b8010d4015b to your computer and use it in GitHub Desktop.
Save jesseeproductions/a467b28a8b8010d4015b to your computer and use it in GitHub Desktop.
Removes categories "tech" from list and month views
/*
* The Events Calendar Remove Events from Month and List Views
* add coding to theme's functions.php
* @version 3.12
* modify here with event category slugs: array( 'concert', 'convention' )
*/
add_action( 'pre_get_posts', 'tribe_exclude_events_category_month_list' );
function tribe_exclude_events_category_month_list( $query ) {
if ( isset( $query->query_vars['eventDisplay'] ) && ! is_singular( 'tribe_events' ) ) {
if ( $query->query_vars['eventDisplay'] == 'list' && ! is_tax( Tribe__Events__Main::TAXONOMY ) || $query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == Tribe__Events__Main::POSTTYPE && ! is_tax( Tribe__Events__Main::TAXONOMY ) && empty( $query->query_vars['suppress_filters'] ) ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => Tribe__Events__Main::TAXONOMY,
'field' => 'slug',
'terms' => array( 'concert', 'convention' ),
'operator' => 'NOT IN'
)
) );
}
}
return $query;
}
@la-com
Copy link

la-com commented May 17, 2019

I've tried this but it doesn't work:
if ( $query->query_vars['eventDisplay'] == 'list' && ! is_tax( Tribe__Events__Main::TAXONOMY ) || $query->query_vars['eventDisplay'] == 'month' && ! $query->tribe_is_event_venue && ! $query->tribe_is_event_organizer && $query->query_vars['post_type'] == Tribe__Events__Main::POSTTYPE && ! is_tax( Tribe__Events__Main::TAXONOMY ) && empty( $query->query_vars['suppress_filters'] ) ) {

@Zodiac1978
Copy link

Does not work anymore unfortunately. Do you have an idea how to fix this code @jesseeproductions?

@Zodiac1978
Copy link

@jesseeproductions
Copy link
Author

@Zodiac1978 - Thanks for linking to a solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment