• cpoz4tech

    (@cpoz4tech)


    Recent update to Elementor 3.8.1 has caused a conflict with JWT Auth 2.1.3, that is preventing any updates via elementor. Elementor edit window gets stuck on loading and their support has directed me to contact JWT Auth support since the issue is isolated to this plugin. Can you please assist?

    Thanks!

    • This topic was modified 2 years ago by cpoz4tech.
Viewing 1 replies (of 1 total)
  • @cpoz4tech You need did you solve your issue? You need to whitelist your Elementor plugin endpoint so that it may work work with the JW Auth plugin smoothly.

    I was facing this issue with my Elementor plugin and resolve it as below, Please have a look and share your thoughts.

    
    add_filter( 'jwt_auth_whitelist', function ( $endpoints ) {
        $your_endpoints = array(
            '/wp-json/elementor/v1/kit-elements-defaults',
            '/wp-json/elementor/v1/globals',
        );
    
        return array_unique( array_merge( $endpoints, $your_endpoints ) );
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Plugin Conflict with Elementor 3.8.1’ is closed to new replies.