Fatal error: Cannot redeclare change_the_title() (previously declared in /home/projectc/public_html/wp-content/themes/divi-master/functions.php:10) in /home/projectc/public_html/wp-content/themes/divi-master/functions.php on line 16
The code for ‘CHANGING THE ‘EVENT SUBMISSION FORM’ PAGE TITLE’ worked alright.
Are you using both snippets together, by chance? If so, you will need to change the name of the filter for one of the snippets so they do not conflict with each. For example, you can change the My Events Page one to be this instead:
add_filter('tribe_ce_event_list_page_title', 'change_the_my_events_title');
function change_the_my_events_title() {
return 'Your New Title Goes Here';
}