Hi
I want to limit the products shown on the Accelerator-site (category pages and search-results) to only show products with a certain text set on a text-field on the products.
I have tried adding a tag in ProductSearchServiceDecorator.cs like this (We are using Elastic search):
tags.Add("LimitProductTextField", new HashSet<string>() { "123" });
But it does not work, I get 0 results. However if I add a tag for a bool-field; that works:
tags.Add("LimitProductBoolField", new HashSet<string>() { bool.TrueString });
Any idea of what I might be doing wrong? Or is it not possible to add this type of limiting tag?
Litium version: 7.4.2