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!