Hi John,
Thanks for reaching out and sorry about the issue with the title. I can help you out with this.
There is a confusion here, maybe from our side. 🙂
The snippet you posted changed the title of the “My Events” page.
To change the tile of the “Submit an Event” page you need a slightly different one. Try with this. I tested is locally and it worked:
add_filter('tribe_ce_submit_event_page_title', 'change_the_title');
function change_the_title() {
return 'Submit Your Event';
}
Make sure that you are using straight quotes (‘) and not curly ones (’), as they can cause errors.
Also check if your theme or the page template you are using allows the page title to be shown.
Let me know if this helps.
Cheers,
Andras