Skip to content

Instantly share code, notes, and snippets.

@coenjacobs
Created September 13, 2012 14:55
Show Gist options
  • Save coenjacobs/3714838 to your computer and use it in GitHub Desktop.
Save coenjacobs/3714838 to your computer and use it in GitHub Desktop.
Make the phone number not required in WooCommerce checkout
<?php
add_filter( 'woocommerce_billing_fields', 'wc_npr_filter_phone', 10, 1 );
function wc_npr_filter_phone( $address_fields ) {
$address_fields['billing_phone']['required'] = false;
return $address_fields;
}
?>
@worldsdream
Copy link

Exactly what is was looking for! thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment