How to Remove Location Option from search?

I would like to remove the location field from my search bar and cant seem to find how to do that. I would like it to only be a keyword search bar. I want to keep the geo location on just not have it in the search.

This code snippet does not work in the customization >Css area

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

		return $form;
	},
	1000
);

1 Like

Hi,

We checked this issue from our side, and it seems okay. Please disable third-party plugins and customizations (if there are any) and check if this issue persists. If you use a caching plugin, make sure that caching is disabled for logged-in users. Also, make sure you add this PHP snippet using this documentation: How to add custom code snippets - HivePress Help Center

Hello,

Yes, it can’t work in CSS area (as you call it), because it’s PHP instead. :face_with_hand_over_mouth:

Consider using a PHP code snippet.

1 Like