Clicking event goes to blank page
-
Using TEC v 3.9.3
https://scenicstage.com/live/?post_type=tribe_eventsI just updated the functions.php in my themes folder to change “Upcoming Events” to something else. The code I used is
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 Auditions'; //In all other circumstances, leave the original title in place return $title; }
Before I did this everything worked fine. Now when you click on the event’s “Find out more” it goes to a blank page. HELP!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Clicking event goes to blank page’ is closed to new replies.