I have a taxonomy term panel that takes over /taxonomy/term/tid which is great for nice URLs. It does a solr search for the term you are on by adding the argument tid:%term:tid to apache solr search result panels filter settings.

I show facets for the vocabulary and when entering taxonomy/term/tid the tid is a selected facet.

Is there any way I can configure the search result panel so that one can deselect the term facet for the term you are on?

When I deselect the term facet (tid:3 for example) it redirects me to /taxonomy/term/3 and the facet is selected again.

What I would want it to do is maybe an override if any term facets are changed from the initial setup on term/tid it should redirect to /search.

Right now I have solved it with a 302 HTTP response code for the taxonomy term panel that redirects to /search?filters=tid:tid.

Any ideas on this?