I am trying to display fields conditionally based on a taxonomy field selection. I am using the following, but having no luck.
<div class="form-group ">
<label>Do you own or represent the owner of this business?</label>
[cred_field field='ownership-status' force_type='taxonomy' output='bootstrap' display='select' single_select='true']
</div>
[cred_show_group if="( [wpv-post-taxonomy type='ownership-status' format='slug']) eq 'Yes' )" mode="fade-slide"]
<div class="form-group ">
<label>Business Name</label>
[cred_field field='listing-contact-first-name' force_type='field' class='form-control' output='bootstrap']
</div>
[/cred_show_group]
I have found the solution.
The proper formatting for the cred show group:
[cred_show_group if="($(ownership-status) eq '10')" mode='fade-slide']