• Hi there,

    I have excluded my user registration pages from lightspeed cache. Browser cache is also turned off. But the problem continues.

    I don’t want to post my signup page publicly.

Viewing 1 replies (of 1 total)
  • Thread Starter violetta

    (@violetta)

    So, seems to be a wordpress problem, not ACFEF…

    Here’s a solution. Added this to code snippets… Seems to work.

    add_action( 'wp_print_scripts', 'DisableStrongPW', 100 );
    
    function DisableStrongPW() {
        if ( wp_script_is( 'user-profile', 'enqueued' ) ) {
            wp_dequeue_script( 'user-profile' );
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘“The password is too weak. Please make it stronger.”’ is closed to new replies.