Dear fellow users,
I'm running into a problem in my project. I just made an extensive questionnaire using formidable plugin on my wordpress website. Most of all, it works perfect. But there's a big problem I can't seem to fix. I will try to write it down as good as I can with an example.
Question A
Answer option A
Answer option B
Answer option C
I want to make a conditional logic that triggers when people answer option A combined with ANY of the other options. So basicly it can be
A + B
A + B + C
A + C
I tried everything, but I just can't figure this out. Hope someone can help me here! Thanks in advance.
This can be solved with jQuery. Here's an idea to try to get it done using native Formidable features (I have no idea if it'll work) - set up the options to use "separate values" and assign the saved value as 100 to A, 1 to B and 2 to C. Then make a hidden field that is a calculation of those choices (this is the part I don't know will work) and then key your conditional logic off the value of the hidden field (if > 100 then...).
Please login or Register to submit your answer