Remove location field in search

Can i get rid of location in front page search here? All the properties are in one location

Also can I add other items to search?

Hi,
Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivepress/v1/forms/listing_search',
	function( $form ) {
		unset($form['fields']['location']);

		return $form;
	},
	1000
);

Also, you can disable the Geolocation plugin.

P.S. If you purchased a theme or extension, please enter the license key in the forum profile settings, this will enable the Premium Support badge and ensure a 24-hour turnaround time.

Thanks I’ll try that. My license key IS in my profile

1 Like

Thanks that worked!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.