Remove Tags From Filter Search

Hello, is there a way to remove tags all togheter from filter search?

I would like the vendors to have the tag options for their lists, I just dont want for the tags to appear on search filter

Please try this PHP snippet

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset( $attributes['tags'] ) ) {
			$attributes['tags']['filterable'] = false;
		}

		return $attributes;
	},
	1000
);
2 Likes

It worked, thank you!

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

Hello,

Is there a way to remove the tags feature from the search section? I am not using it to filter search results on my site so would like to remove it.

Hi,

Please check the solution in this topic.

Is there a way to hide the tags filter from the listings and vendor search page?

Hi,

Please check the solution in this topic.