Title: How to hide items?
Last modified: August 31, 2016

---

# How to hide items?

 *  Resolved [santiarango](https://wordpress.org/support/users/santiarango/)
 * (@santiarango)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-items/)
 * Hi! In former versions of Checkout Manager we could hide certain fields of woocommerce
   checkout form like post code or company name and address which are irrelevant
   for us, with this new version (4.0.8) we are not able to do it, is there any 
   way?
 * The checkout form now shows address and location fields on top, but we need name
   and personal info first, how can we reorganize this as we used to do it with 
   3.6.8 version, which seems to be a much more useful version. Thanks for your 
   help.
 * [https://wordpress.org/plugins/woocommerce-checkout-manager/](https://wordpress.org/plugins/woocommerce-checkout-manager/)

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

 *  [RobertMasson](https://wordpress.org/support/users/robertmasson/)
 * (@robertmasson)
 * [10 years ago](https://wordpress.org/support/topic/how-to-hide-items/#post-7419487)
 * Hi, I have the EXACT SAME problem… have you figured out a way? PLEASE HELP… I’ve
   been trying to do that for a long time and unable to do it now… PLEASE HELP!
 *  [Bertramhage](https://wordpress.org/support/users/bertramhage/)
 * (@bertramhage)
 * [10 years ago](https://wordpress.org/support/topic/how-to-hide-items/#post-7419490)
 * I know this is an old post, but anyways:
 * In your theme there is a folder called functions.php, copy/paste this in:
 *     ```
       <?php
   
       add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
   
       function custom_override_checkout_fields( $fields ) {
           unset($fields['billing']['billing_first_name']);
           unset($fields['billing']['billing_last_name']);
           unset($fields['billing']['billing_company']);
           unset($fields['billing']['billing_address_1']);
           unset($fields['billing']['billing_address_2']);
           unset($fields['billing']['billing_city']);
           unset($fields['billing']['billing_postcode']);
           unset($fields['billing']['billing_country']);
           unset($fields['billing']['billing_state']);
           unset($fields['billing']['billing_phone']);
           unset($fields['order']['order_comments']);
           unset($fields['billing']['billing_address_2']);
           unset($fields['billing']['billing_postcode']);
           unset($fields['billing']['billing_company']);
           unset($fields['billing']['billing_last_name']);
           unset($fields['billing']['billing_email']);
           unset($fields['billing']['billing_city']);
           return $fields;
       }
       ```
   
 * Just remove the fields you want to keep
 *  [digexrules](https://wordpress.org/support/users/digexrules/)
 * (@digexrules)
 * [10 years ago](https://wordpress.org/support/topic/how-to-hide-items/#post-7419491)
 * It appears you can remove them by clicking the box to the far right of the WooCommerce
   Checkout Manager main billing screen under the X.

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

The topic ‘How to hide items?’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-checkout-manager/assets/icon-256x256.jpg?rev
   =2911736)
 * [Checkout Field Manager (Checkout Manager) for WooCommerce](https://wordpress.org/plugins/woocommerce-checkout-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-checkout-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-checkout-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-checkout-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-checkout-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-checkout-manager/reviews/)

 * 3 replies
 * 4 participants
 * Last reply from: [digexrules](https://wordpress.org/support/users/digexrules/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/how-to-hide-items/#post-7419491)
 * Status: resolved