I have a custom field for Services Offered, it has about 5-6 options, then an "Other" option.
In the View, I have a conditional statement (below) that checks if the Services Offered field has "Other" checked, and if so, displays a link to view more info.
The issue I am having is that if "Other" is the only option checked, the conditional code displays properly, but if they have multiple options selected and "Other" selected as well, the conditional code does not display.
Below is the Conditional Shortcode I am using and I have attached screenshots.
Where:
- Replace 'option_value' with your original option value
2)
Use the Types shortcode to check the current state of checkboxes option:
For example:
[types field="services-offered" option="0" state="checked"]
text to display when option 0 is checked
[/types]
[types field="services-offered" option="0" state="unchecked"]
text to display when option 0 is not checked.
[/types]