Title: Hide fields
Last modified: May 1, 2023

---

# Hide fields

 *  Resolved [pmmungai86](https://wordpress.org/support/users/pmmungai86/)
 * (@pmmungai86)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/hide-fields-6/)
 * Can I hide some fields in the listing form?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhide-fields-6%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * (@gwin)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/hide-fields-6/#post-16700302)
 * Hi,
 * you can hide the fields either using the Custom Fields extension [https://wpadverts.com/extensions/custom-fields/](https://wpadverts.com/extensions/custom-fields/)
   or by adding the code below in your theme functions.php file
 *     ```wp-block-code
       add_filter( "adverts_form_load", function( $form ) {
         if( $form["name"] != "advert" ) {
           return $form;
         }
         $hide = ["adverts_price", "adverts_phone"];
         foreach( $form["field"] as $k => $field ) {
           if( in_array( $field["name"], $hide ) ) {
             unset( $form["field"][$k] );
           }
         }
         return $form;
       } );
       ```
   
 * This code will hide the price and phone fields, if you want to hide different
   fields you will need to customize the `$hide = [ ... ]` line, the list of fields
   names available in the form by default you will find here [https://github.com/simpliko/wpadverts-snippets/blob/master/customize-adverts-add/customize-adverts-add.php](https://github.com/simpliko/wpadverts-snippets/blob/master/customize-adverts-add/customize-adverts-add.php)

Viewing 1 replies (of 1 total)

The topic ‘Hide fields’ is closed to new replies.

 * ![](https://ps.w.org/wpadverts/assets/icon-256x256.png?rev=2423472)
 * [WPAdverts - Classifieds Plugin](https://wordpress.org/plugins/wpadverts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpadverts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpadverts/)
 * [Active Topics](https://wordpress.org/support/plugin/wpadverts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpadverts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpadverts/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * Last activity: [3 years, 1 month ago](https://wordpress.org/support/topic/hide-fields-6/#post-16700302)
 * Status: resolved