• Resolved geetha14

    (@geetha14)


    Hi, In my single event page breadcrumb title always shows ‘Upcoming Events’ even the event has passed. How can I change the breadcrumb title?

    Thanks.

Viewing 1 replies (of 1 total)
  • Hey there,

    Thanks for reaching out ??

    Sorry that we’re just now getting to this, we’ve been seeing a surge in support requests.

    This isn’t something that can be changed in a setting, but rather site-wide with a snippet.

    function change_upcoming_event_title($text) {
        if ($text === 'Upcoming Events') return 'Upcoming wine classes';
        else return $text;
    }
    
    add_filter('tribe_get_events_title', 'change_upcoming_event_title');

    Take care,
    Ed ??

Viewing 1 replies (of 1 total)
  • The topic ‘Breadcrumbs Title’ is closed to new replies.