Can I add a filter label on the Universal Answers results?

I’d like to add a filters applied text label to the filter badges on the universal search results; I was able to successfully add it to the vertical page by adding

"show": true,
"showFieldNames": true

Under the "Applied Filters" section of the vertical page.json so it looks something like this

Screen Shot 2021-03-15 at 1.05.13 AM

But I would also like to add the same label to the universal search where right now it only shows the filter badge. Is there an easy way to do that?

Hi Hannah,

You can update the componentSettings.UniversalResults.appliedFilters property in your index.json file:

"UniversalResults": {
  "appliedFilters": {
      "showFieldNames": true
    }
}

That should produce what you’re looking for! Let us know if not.

This worked perfectly, thank you!