Hi themco,
I have a ACF checkbox with multiple selections, (no single true/false checkboxes!). like:
Checkbox:
[ ] Option1
[ ] Option2
[ ] Option3
How can I query in the condition of a builder element to see if one of these options has been set? For example i want to show this element only if “Option2” is set. This is not about a looper!
The only useful comparison function “string” doesn’t really work here, because in the database the field is a serialized array.
UPDATE
I think i figured it out. It is important in which order you set the condition.
Checkbox - in - "Option2"
doesn’t make sense.
"Option2" - in - Checkbox
works
Hope that helps other too