Title: Breadcrumbs Title
Last modified: December 21, 2018

---

# Breadcrumbs Title

 *  Resolved [geetha14](https://wordpress.org/support/users/geetha14/)
 * (@geetha14)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-title/)
 * 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)

 *  [Ed](https://wordpress.org/support/users/erishel/)
 * (@erishel)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/breadcrumbs-title/#post-11111125)
 * 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.

 * ![](https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440)
 * [The Events Calendar](https://wordpress.org/plugins/the-events-calendar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/the-events-calendar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/the-events-calendar/)
 * [Active Topics](https://wordpress.org/support/plugin/the-events-calendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/the-events-calendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/the-events-calendar/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Ed](https://wordpress.org/support/users/erishel/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/breadcrumbs-title/#post-11111125)
 * Status: resolved