Filter the notice shown when a customer tries to register with an existing email address.
true, $this
Sortie :
@param string $message The notice. @param string $email The email address.
// Modifier la valeur avec le filtre 'woocommerce_checkout_update_customer_data'
add_filter('woocommerce_checkout_update_customer_data', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...