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-
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-
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-