Hide Private Event on calendar

Home Forums Calendar Products Events Calendar PRO Hide Private Event on calendar

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1144625
    Susan
    Participant

    Please let me know how to hide private events in upcoming events and in calendar view and list view.

    #1144935
    Josh
    Participant

    Hey Susan,

    Thanks for reaching out to us!

    When creating the events, there is a metabox on the side of the screen that allows you to hide a particular event from listing views. https://cloudup.com/c-r1LYf0Ztl

    Let me know if this helps.

    Thanks!

    #1148548
    Susan
    Participant

    I want to hide events on this page only – http://pocosinarts.org/events/ and want to show all events on calendar view – http://pocosinarts.org/events/month/?tribe-bar-date=2016-08-05

    Please let me know how to do this. Is there any hooks available to make this possible.

    Thanks!

    #1148932
    Josh
    Participant

    Hey Susan,

    Sure thing! An option here would be to take advantage of the event categories to create some sort of “hidden” category. You could then use the following snippet in your theme’s functions.php file:

    
    
    // Removes categories "dance" and "concert" from list and month views
    add_action( 'pre_get_posts', 'exclude_events_category' );
    
    function exclude_events_category( $query ) {
    
    if ( $query->query_vars['eventDisplay'] == 'month' ) {
    
    	$query->set( 'tax_query', array(
    
    		array(
    			'taxonomy' => Tribe__Events__Main::TAXONOMY,
    			'field' => 'slug',
    			'terms' => array('dance', 'concert'),
    			'operator' => 'NOT IN'
    		)
    		)
    	);
    }
    return $query;
    }
    

    You would replace the “terms” option in the array above with the slug for the category that you created for these hidden events. Then, you would just assign the events that you would like hidden from the calendar.

    Let me know if this helps.

    Thanks!

    #1157606
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Hide Private Event on calendar’ is closed to new replies.