One of the most common questions we get from users of the Community Events add-on is, “How do I change the page title on the Community Pages?”  We’ve compiled a couple of scenarios into one post and hopefully some of these code snippets will help you out!  If what you’re needing isn’t here, feel free to open a new topic at our help desk, and we’ll help you out!

Changing the Event Submission page title

You can easily change the page title on the submission form using the tribe_events_community_submit_event_page_title filter. Just paste the following into your theme’s functions.php file:

add_filter( 'tribe_events_community_submit_event_page_title', 'change_the_title' );
function change_the_title() {
	return 'Your New Title Goes Here';
}

Changing the My Events page title

You can also change the page title on the My Events page using the tribe_events_community_event_list_page_title filter. Just paste the following into your theme’s functions.php file:

add_filter( 'tribe_events_community_event_list_page_title', 'change_the_title' );
function change_the_title() {
	return 'Your New Title Goes Here';
}