How to Hide tags in listing filter form

how can i hide tags in listing filter form, a code snippet or anything

Hi,

Please use this PHP snippet:

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

		return $form;
	},
	1000
);

Please note that it can require further customization.

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.

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