Hide the Tag field in filter form

What’s the easiest way to hide the tag field on the filter area, listing page, while the tags plugin is enabled?

Hey @mmandrav873,

You can use the following code snippet to achieve this:

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

		return $form;
	},
	1000
);

I hope this helps!

Cheers,
Chris :victory_hand:

1 Like

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