• Hi ,

    After installing and configuring the JWT Authentication for WP-API plugin, I keep seeing the following message at the top of my admin panel:

    “JWT Authentication installed successfully! Configure your settings to enable REST API authentication.”

    Even though everything is correctly configured (as shown in the Configuration Health Check), the message does not go away after refreshing or revisiting the page.

    Could you please guide me on how to dismiss or permanently remove this notification?

    Thanks,

    Vikas

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter vikasTYAGI87

    (@vikastyagi87)

    any update?

    Same. Super annoying, I’ve dismissed it a dozen times and it just won’t go away.

    Thread Starter vikasTYAGI87

    (@vikastyagi87)

    Untill support dont reply – Use the following code snippet in your theme’s functions.php file

    add_action('admin_init', function () {
    $user_id = get_current_user_id();
    if ($user_id) {
    // Simulate dismissing the notice for the current user
    $meta_key = '_dismissed_notice_jwt_auth_welcome';
    if (!get_user_meta($user_id, $meta_key, true)) {
    update_user_meta($user_id, $meta_key, true);
    }
    }
    });

    • This reply was modified 4 months, 1 week ago by vikasTYAGI87.
Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.