Guest User

Untitled

a guest
Feb 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields', 99 );
  2.  
  3. function custom_override_checkout_fields( $fields ) {
  4.  
  5. unset($fields['billing']['billing_postcode']['validate']);
  6. unset($fields['shipping']['shipping_postcode']['validate']);
  7.  
  8. return $fields;
  9. }
Add Comment
Please, Sign In to add comment