Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether email typo suggestions are enabled.
This setting is not related to email validation. It only controls the typo suggestions shown to users when entering an email address. For example, if someone types [email protected], Mailcheck may suggest [email protected]. Email validation will still run normally and is not affected by this option.
Parameters #
$enabled(bool) Whether mailcheck is enabled. Defaults totrue.
Examples #
/**
* Disable email typo suggestions
*/
add_filter( 'fc_enable_checkout_email_mailcheck', '__return_false', 10 );
