Advertisement
borkolivic

Untitled

Jul 25th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. /* Removes Region Checkout Field */
  2. add_filter( 'woocommerce_checkout_fields' , 'remove_region_checkout_field' );
  3.  
  4. function remove_region_checkout_field( $fields ) {
  5.     unset($fields['billing']['billing_state']);
  6. return $fields;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement