Join our new community forum for support & discussion

Join Now

Home Support Extensions Geolocation How to remove the search location field?

How to remove the search location field?

  • Author
    Posts
  • arielkbs

    I would like to remove the location field in the search, leaving a single field, still keeping the geolocation plugin functions

    yevhen developer

    Please try this PHP snippet

    add_filter(
    	'hivepress/v1/forms/listing_search',
    	function( $form ) {
    		if ( isset( $form['fields']['location'] ) ) {
    			unset($form['fields']['location']);
    		}
    
    		return $form;
    	},
    	1000
    );
Viewing 2 posts - 1 through 2 (of 2 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.