So it is possible to get several parameter for a same filter. For example, we could look for a person who gets experience in Real Estate and also for selling cars. So we click on two checkbox.
The field to filter is a lit of an option set (OS_Type) as you can see below :
Thank you for your quick answer.
So I did exactly the same than you, but it doest not work on my side. I think it is because my field in the database is a list of option set (os_type).
Below you can see the variable as you did for collecting the URL parameter :
When we check the debug text as you did on my front page, we can see Bubble collects only the first parameter that we have selected with the checkbox “Categorie”. As you can see below, the URL parameter says there are two parameters inside the URL but in the debug, there is only one.
However, the first variable collect all the parameters :
So just make sure your query string does not contain a space between each Option (note: bubble always adds a space between list items when displaying them as text, so use :join with “,” to manually override that default behaviour - or split with , instead of ,).