Hide upcoming events on single venue if no events

Home Forums Ticket Products Event Tickets Plus Hide upcoming events on single venue if no events

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1166208
    Tricia Olson
    Participant

    Is there any way to hide the “upcoming events” section on a single venue’s page if there are no upcoming events? I’d like to be able to have it skip that section rather than displaying the “no results found” notice. If not is there a way to change what the notice says?

    #1166684
    Nico
    Member

    Hi Tricia,

    Thanks for getting in touch with us! I can help you here ๐Ÿ™‚

    Just add the following snippet to your theme’s (or child theme’s) functions.php file:

    /* Tribe, if venue has no events return empty string */
    function tribe_venue_not_show_if_empty ( $html ) {

    if ( strrpos ( $html , 'no results found' ) === false ) return $html;

    return '';
    }

    add_filter( 'tribe_venue_upcoming_events', 'tribe_venue_not_show_if_empty' );

    Please let me know if this works for you,
    Best,
    Nico

    #1166766
    Tricia Olson
    Participant

    That is exactly what I needed. Thank you so much.

    #1166906
    Nico
    Member

    You are welcome Tricia! Glad to be of service ๐Ÿ™‚

    Iโ€™ll go ahead and close out this thread, but if you need help with anything else please donโ€™t hesitate to create a new one and we will be happy to assist you.

    Cheers,
    Nico

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Hide upcoming events on single venue if no events’ is closed to new replies.