How do I implement a filter that only shows products that are in stock and hides the ones that aren't? With pseudo code I like to implement something like this:
(Stock >= 0 OR (Stock > 0 And Parameter[ShowOnlyInStock"] = true))
I can do the first parts, but I can't choose a parameter as the source for an expression.
Any ideas?
Thanks!