Hi,
I need to create custom fields (for a custom front-end form later on) where I can add Other as an option...
Let me explain: their current Google form that I need to reproduce has a list of checkboxes (where they can select only 3 values) and one of the options is "Other" with a text field to enter the value...
What I would like to do is create a bunch of checkboxes and have a textfield appear IF the checkbox "Other" is selected (and hide otherwise).
So, I created my checkboxes and my text field. When I try to set a condition on the text field, I see the other fields (in basic), but not the checkboxes... So, there seems to be a limit with checkboxes... I then tried the advanced conditions... With the help of the content previously there, here's my second-to-last attempt (previous ones included without the "wpcf-", with and without quotes...):
($(wpcf-primary-high-level-shared-goal) eq 'Other')
Based on that document (https://toolset.com/course-lesson/custom-fields-conditional-display/), I also tried this:
($(wpcf-primary-high-level-shared-goal) = 'Other')
None of them work (P.S. Other is the actual value, not just the label).
So, is there a code I can put there, or it's simply not possible with a list of checkboxes (I tried with drop-downs, radio buttons, etc and it was working fine)? Is there some custom code I can use?
Thank you.