Title: Hide Location
Last modified: February 17, 2017

---

# Hide Location

 *  Resolved [jotomas](https://wordpress.org/support/users/jotomas/)
 * (@jotomas)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/hide-location/)
 * Hi,
 * My WP Adverts site is based in a single location and, therefore, the Location
   field does not make much sense.
 * Is it possible to hide it everywhere (Add Ad Form, Search, etc.)?
 * I look forward to your reply.
 * Thank you very much for your help.
 * Best regards.

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

 *  Plugin Author [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * (@gwin)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/hide-location/#post-8819178)
 * Hi, you can remove Location field from [adverts_add] and [adverts_list] by adding
   the code below to your theme functions.php file
 *     ```
       add_filter( "adverts_form_load", "customize_adverts_add" );
       function customize_adverts_add( $form ) {
         if( $form['name'] != "advert" ) {
           return $form;
         }
         foreach( $form["field"] as $key => $field ) {
           if( $field["name"] == "adverts_location" ) {
               unset( $form["field"][$key] );
           }
         }
         return $form;
       }
   
       add_filter( "adverts_form_load", "customize_adverts_list" );
       function customize_adverts_list( $form ) {
         if( $form['name'] != "search" ) {
           return $form;
         }
         foreach( $form["field"] as $key => $field ) {
           if( $field["name"] == "query" ) {
               $form["field"][$key]["meta"]["search_type"] = "full";
           }
           if( $field["name"] == "location" ) {
               unset( $form["field"][$key] );
           }
         }
         return $form;
       }
       ```
   
 *  Thread Starter [jotomas](https://wordpress.org/support/users/jotomas/)
 * (@jotomas)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/hide-location/#post-8819203)
 * Hi Greg,
 * Great! Thanks a lot!
 * Best regards.

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

The topic ‘Hide Location’ 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/)

 * 2 replies
 * 2 participants
 * Last reply from: [jotomas](https://wordpress.org/support/users/jotomas/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/hide-location/#post-8819203)
 * Status: resolved