Hi,
is it possible to create a nested view where the linked field is a checkbox lookup field (multiple selections possible)?
I tried with [display-frm-data id=x pass_field="[y]"] in the parent view and a filter condition "contains" in the child view. But the child sections shows no entries...
Formidable stores multiple checkbox values as a serialized array. You cannot use a serialized array value in a query. The values need to be unserialized before they can be used to filter a query. This means custom code executed through the frm_view_order hook. You need to write your own query. Look at the video I just posted about understanding the Formidable Forms metadata schema so you can see how values are stored in the database.
Please login or Register to submit your answer