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 vyskoczilova/7d9612bc7d306d6bbfe46d5394b4a4e3 to your computer and use it in GitHub Desktop.
Save vyskoczilova/7d9612bc7d306d6bbfe46d5394b4a4e3 to your computer and use it in GitHub Desktop.
Make the phone number not required in WooCommerce checkout
add_filter( 'woocommerce_billing_fields', 'wc_kbnt_filter_phone', 10, 1 );
function wc_kbnt_filter_phone( $address_fields ) {
$address_fields['billing_phone']['required'] = false;
return $address_fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment