Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Allows changing the Mailcheck email typo suggestion message.
Parameters #
$message(string) The email typo replacement message. Should include a%smarker that will be replaced with the suggested email address fix.
Examples #
/**
* Change the Mailcheck email typo suggestion message.
*
* @param $message The email typo replacement message. Should include a `%s` marker that will be replaced with the suggested email address fix.
*/
function fluidcheckout_change_mailcheck_suggestion_message( $message ) {
return __( 'It looks like your email address might have a small typo. Did you mean %s?', 'your-text-domain' );
}
add_filter( 'fc_mailcheck_suggestion_message', 'fluidcheckout_change_mailcheck_suggestion_message', 10 );
