Community Events Version 3.11 not working

Home Forums Calendar Products Community Events Community Events Version 3.11 not working

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #998226
    Tumikia
    Participant

    The slug is not working: http://ebwn.org/member-events/community/add
    Instead I am getting a 502 page.

    Yes, I saved my permalinks.

    I saw a number of posts that version 3.11 is the problem.

    When will the issue be resolved?

    #998401
    Josh
    Participant

    Hey Tumikia,

    Thanks for reaching out to us!

    Could you try adding the following snippet to your theme’s (or child theme’s) “functions.php” file:

    
    add_action( 'init', 'ce_rehook_community_parse_request' );
    
    function ce_rehook_community_parse_request() {
    if ( ! class_exists( 'WP_Router' ) ) return;
    $callback = array( WP_Router::get_instance(), 'parse_request' );
    
    remove_action( 'parse_request', $callback, 5 );
    add_action( 'parse_request', $callback );
    }
    

    You can add this at the end of the following before any closing “?>”

    Let me know if this helps.

    Thanks!

    #1002862
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Community Events Version 3.11 not working’ is closed to new replies.