Kasia Karazim

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: WP Router Placeholder Page #23353
    Kasia Karazim
    Participant

    I found a quick fix for this, put the following into your theme functions.php file. It will check to see if it’s showing the Submit an Event page and re-write the title to “Submit an Event”:

    function event_calendar_title_rewrite( $str ) {
    if($_SERVER[“REQUEST_URI”] == “/events/community/add/”){
    return “Submit an Event”;
    } else {
    return $str;
    };
    };
    add_filter( ‘wpseo_title’, ‘event_calendar_title_rewrite’);

    in reply to: Event Categories not carried through #21660
    Kasia Karazim
    Participant

    I am having the same issue. Tried disabling all plugins except events calendar, events calendar pro and community and running Twenty Eleven theme, still have the issue.

Viewing 2 posts - 1 through 2 (of 2 total)