Hi, I have a page where I want to display 2 columns: One with product manuals, the other with parts lists (both are posts with tags and categories). When I do a single query for both set for 2 columns, it displays them in any order I set but none of those will keep either category/tag type of post in the left or right column (I need manuals in the left column, parts lists on the right).
I need to do a filter search on two queries if I use one query per column but I don’t see an option to do that.
you can only select one filter for one loop
in default it is not possible filter 2 loop with one input.
but you can write .js and maybe solve that ıdidnt do it before I am sure it is possible
build your left loop and right loop
add your left filter input and right search input
hide your right input
link your left input with right input and when you are writing fill the right hidden input with js
Thank you, this set me down the appropriate path. At first it wasn’t doing a live search on “fake” input on the second hidden filter input then I forced a keyup via dispatchEvent and it worked!