I’d really like the option to disable this too, our forms get lots of submissions from people with valid .ac.uk email addresses. It suggests to them that they should change it to co.uk and a lot of people blindly follow the prompt!
Hi rogeriodec and indie1982,
We don’t have a built-in way to disable the email suggestions. However, if you’re willing you can use the following custom code:
add_filter( 'wpforms_mailcheck_enabled', '__return_false' );
In case it helps, here’s our tutorial with the most common ways to add custom code like this.
For the most beginner-friendly option in that tutorial, I’d recommend using the Code Snippets plugin.
Hope this helps!
Worked, thank you.
So I leave the suggestion to implement this function as a user option in a future release.
The filter fixed it for me too, thanks Ethan!