Resumo de IA
Descrição
The wpforms_mailcheck_enabled filter determines whether the email suggestion feature is enabled for the Email field.
Parâmetros
- $enable_mailcheck
- (bool) (Required) Determines whether email suggestion will display, default is
true(display suggestions)
Fonte
wpforms/src/Frontend/Frontend.php
Mais Informações
The filter will allow you to disable the email suggestion on the Email form fields.

Exemplos
/** * Filter determines if email suggestion is to be used on Email form field. * * @link https://wpforms.com/developers/wpforms_mailcheck_enabled/ * * @param bool $enable_mailcheck Default is true. * @return bool */ // Disable email suggestion on Email form field add_filter( 'wpforms_mailcheck_enabled', '__return_false' );
Ação de Referência
Como Desativar a Sugestão de E-mail no Campo de Formulário de E-mail