For example when I choose Vegan and Mains its working, however when i then choose also Vegetarian, its not showing anything. That could be true. But when i then unselect vegetarian again, its not showing me anything (even tough I have seen a bunch of products with the same filter logic before). In generel it seems that the AND logic is not working for me.
Also I would like to see the query parameters so the filter can be share we pre configured settings, but that also doesnt seem to work.
We’ve taken a look at your Filter v2 issues. It seems there are two things going on:
For the AND logic to work correctly, you need to add fs-list-filtermatch=“and” to your fs-list-element="list" element.
We noticed that all your checkboxes currently use the same data-name="Checkbox".
To avoid confusion and ensure filters work as expected, make sure that all checkboxes within the same group share the same data-name. For example:
Use data-name="Ingredients" for your ingredients checkboxes
Use data-name="Kind" for your kind/category checkboxes
Each group should have a unique name so that the filters apply independently but still respect the AND logic when combined.
Keep in mind that with AND logic, items must match all selected criteria at the same time. So, if no CMS items meet every selected condition (e.g., “Vegan” AND “Mains” AND “Vegetarian”), the list will appear empty.
We noticed that you have fs-list-showquery="true" on your script tag, that’s great!
However, the reason why the show query feature isn’t working is because the attribute value on your fs-list-showquery option is incorrect.
Please correct or remove fs-list-showquery="query" from the element with fs-list-element="list".
You might want to check your CMS data structure to verify items actually have multiple categories that would work with AND logic. Test with combinations you know exist in your CMS.
Let us know how these changes work for you! If you need more help, @Support-Luis or @Support-Pedro can assist further.