I am trying to: Set-up a Conditional Output by category vendor-types https://toolset.com/forums/topic/conditional-display-based-on-taxonomy-selection-in-a-cred-form/
Link to a page where the issue can be seen: hidden link
I expected to see: Hello Bob
Instead, I got: Nothing
<div class="row">
<div class="form-group col-md-6">
<label>Vendor Type</label>
[cred_field field='vendor-types' force_type='taxonomy' output='bootstrap' display='checkbox']
[cred_field field="vendor-types_add_new" taxonomy="vendor-types" type="add_new"]
</div>
<div class="form-group col-md-6">
<label>Vendor Events</label>
[cred_field field='vendor-event' force_type='taxonomy' output='bootstrap' display='checkbox']
[cred_field field="vendor-event_add_new" taxonomy="vendor-event" type="add_new"]
</div>
</div>
<div class="row">
<div class="col-md-12">
[cred_show_group if="( $(vendor-types) eq 'entertainer' )" mode="fade-slide"]Hello Bob[/cred_show_group]
</div>
</div>
The documentation on this page is wrong: https://toolset.com/forums/topic/conditional-display-based-on-taxonomy-selection-in-a-cred-form/
It tells you to use the category slug but you need to use the category data-value which in my case had a capital E instead of a lowercase e. Can you please update that documentation. Thanks!