I have a category dropdown filter on my website navbar that affects all pages. I do not want to create a separate View for it.
When the filter is used I want ?filter=category+selected
added in front of my query string.
For example, my query string should be https://website.com/controller_name/action_name?filter=category+selected
Is there a way to achieve this? Any advice is appreciated.
In your view, use javascript to get selected option value (put it inside a script tag):
The dropdown will have an onchange event which will trigger above function:
Controller action code:
You can also use fetch APIs to update options if you don't want the page to reload.