Title: How to hide zip code field
Last modified: June 10, 2020

---

# How to hide zip code field

 *  Resolved [TechMan](https://wordpress.org/support/users/techman/)
 * (@techman)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-zip-code-field/)
 * Is it possible to hide zip code field or at least make it optional? Hiding it
   would be much better though.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [arcangelini](https://wordpress.org/support/users/arcangelini/)
 * (@arcangelini)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-zip-code-field/#post-12968146)
 * Hey [@techman](https://wordpress.org/support/users/techman/)
 * You can do this by either using some [custom code that we have in our Customize checkout field documentation](https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/).
   Or by using our [Checkout Field Editor extension](https://woocommerce.com/products/woocommerce-checkout-field-editor/?aff=10486&cid=1131038).
 * It is your choice as to which option would be better for you : )
 *  Thread Starter [TechMan](https://wordpress.org/support/users/techman/)
 * (@techman)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/how-to-hide-zip-code-field/#post-12968877)
 * Is the code to remove postcode correct?
 *     ```
       add_filter( 'woocommerce_default_address_fields' , 'custom_override_default_address_fields' );
   
       function custom_override_default_address_fields( $address_fields ) {
            unset($address_fields['postcode']);
   
            return $address_fields;
       }
       ```
   
 *  Plugin Support [Aashik P – a11n](https://wordpress.org/support/users/aashik/)
 * (@aashik)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/how-to-hide-zip-code-field/#post-12969239)
 * > Is the code to remove postcode correct?
 * Tested the above snippet on my own local site to confirm that it indeed hides
   the zip code field in the checkout page:
 * ⌊checkout page⌉⌊checkout page⌉
    Link to image: [https://d.pr/i/XNcTvG](https://d.pr/i/XNcTvG)
 * Just a heads up that if one of your plugins or payment gateways needs this data,
   then customers may not be able to successfully process orders on the store.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to hide zip code field’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Aashik P – a11n](https://wordpress.org/support/users/aashik/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/how-to-hide-zip-code-field/#post-12969239)
 * Status: resolved