• Hello,

    to avoid the loading speed for zxcvbn.min.js i used this code :

    add_action('wp_print_scripts', 'remove_password_strength_meter');
    function remove_password_strength_meter() {
        // Deregister script about password strenght meter
        wp_dequeue_script('zxcvbn-async');
        wp_deregister_script('zxcvbn-async');
    }

    But after that See password button or generate password or if i want to create an admin user its not possible is there another way to fix zxcvbn.min.js and at the same time to keep having the same access for creating and changing users password ?

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

The topic ‘zxcvbn.min.js’ is closed to new replies.