Hi,
Great plugin but I’m hoping you can help me edit something!?
I need to change all references to the wording “Events” and “Event”.
For example, things like “Previous Events”, “Next Events”, “Events for April 2014”, “Events for week of …”, “Events for Tuesday, …” and “Home Page > Event”.
I need these to be replaced with either “Trips” or “Trip”.
I searched your forums but I couldn’t find any documentation that covered all of these changes. I found the following for changing the List View title:
add_filter(‘tribe_get_events_title’, ‘change_upcoming_events_title’);
function change_upcoming_events_title($title) {
//We’ll change the title on upcoming and map views
if (tribe_is_upcoming() or tribe_is_map() or tribe_is_photo()) return ‘Upcoming Trips’;
//In all other circumstances, leave the original title in place
return $title;
}
But this doesn’t do everything needed.
You’re help will be much appreciated so thank you in advance.