Hi
i’m wondering if someone can help me with this
I’m filtering values of two matrix fields with checkboxes (with the use of dynamic fields)
everything works through javascript to send multiple values…
<input type="hidden" class="filter-input" name="search:matrix_field" value="">However the value comes from a matrix_field… so in order to make it work i need to pass the matrix field in my case name=“search:matrix_field” to the hidden input field.
this works perfect
but if i want to filter on multiple fields it doesn’t work, perhaps I’m doing it wrong
This is what it tried so far…
<input type="hidden" class="filter-input" name="search:matrix_field|search:Other_matrix_field" value="">
<input type="hidden" class="filter-input" name="search:matrix_field|Other_matrix_field" value="">