Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psaikali/35f60c3c578cfc6705ebd86f3527a332 to your computer and use it in GitHub Desktop.
Save psaikali/35f60c3c578cfc6705ebd86f3527a332 to your computer and use it in GitHub Desktop.
Supprimer l'obligation de remplir le champ Téléphone sur la page Commande de WooCommerce
<?php
/**
* Ne plus rendre le champ "Téléphone" obligatoire sur la page Commande de WooCommerce
*/
function msk_wc_make_phone_field_not_required($address_fields, $country) {
$address_fields['billing_phone']['required'] = false;
return $address_fields;
}
add_filter('woocommerce_billing_fields', 'msk_wc_make_phone_field_not_required', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment