• Resolved avwscad

    (@avwscad)


    ?Hi

    If i use Google Chrome AutoFill, all (3) steps will shown in layers at the same time ??
    How can i prevent this?
    <br>
    Screenshot

    BR
    Alex

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Bruce

    (@ninjateamwp)

    Hi @avwscad ,

    Thanks for using CF7 Multistep plugin and I am sorry to hear about this issue.
    In this case, please schedule a Teamcheck with our developers to help you check this:

    [email protected]

    Kind regards,
    -Bruce-

    Thread Starter avwscad

    (@avwscad)

    Hello Bruce

    Sorry for late reply … your answer landed in my spam folder …
    Can you already confirme this issue?

    Best regards
    Alex

    Plugin Support Bruce

    (@ninjateamwp)

    Hi @avwscad ,

    Please refer to my last response above and schedule a Teamview for this case, since we do not experience this on our end.

    Thank you!

    Kind regards,
    -Bruce-

    Thread Starter avwscad

    (@avwscad)

    Hello Bruce

    Sorry again for late reply …
    I found a solution: There is a “Country” dropdown selection which makes problems.
    I couldnt deactivate autocomplete for this dropdown. autocomplete:off or autocomplete:false doesnt worked.
    So i add a snippet to the function.php

    add_filter( 'wpcf7_form_elements', 'imp_wpcf7_form_elements' );
    function imp_wpcf7_form_elements( $content ) {
        $str_pos = strpos( $content, 'name="Country"' );
        $content = substr_replace( $content, ' autocomplete="both" autocomplete="off" ', $str_pos, 0 );
    
        return $content;
    }

    But now i have to avoid a script error if in a form no “Country” dropdown is set – so i have to set this dropdown in every form and comment it, if i dont need it.

    Not very nice, but it works …

    Alex

    Plugin Support Bruce

    (@ninjateamwp)

    Hi @avwscad ,

    Glad to know you figured this out.
    Do not hesitate to let us know if you need further support.

    Thank you!

    Kind regards,
    -Bruce-

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Error with Google Chrome AutoFill’ is closed to new replies.