I’m using the Dawn theme and the Search and Discovery app currently. Is there a way to add a filter option that would let the user choose which option they would like to see between pages, products and blog posts? I do not see any option like that in the search and discovery app and I wasn’t sure if another app existed that would allow me to utilize that as an option or if it is possible at all.
Hello @jessielynn ,
You can try this app Searchanise
Before install check its demo store there you will find how it works.
Regards
Naveen
Hello @jessielynn ,
If you need that level of control you have a few opt:
1. Type-specific search links
You can build simple tabs or buttons that point to /search?q={term}&type=product, /search?q={term}&type=article or /search?q={term}&type=page. Each URL returns only that resource type without extra apps.
2. Third-party search apps
Apps like Searchanise, Doofinder or Algolia offer built-in content-type filters. They replace your storefront search entirely but give you a polished UI where customers can toggle between products, blog posts and pages.
3. Custom Liquid/JS solution
By editing your templates/search.liquid, you can loop through search.results, group them by object_type, and render tabs or a filter menu yourself. You’d write a bit of JavaScript to show or hide sections based on the selected tab.
Thank you @Kudosi-Carlos Option 1 is exactly what I needed
Hello @jessielynn
Glad it helps you! Good luck on your journey :')