I have a form that uses some conditional settings. When I receive an email response, the results are correct (example: “No Dietary Restrictions”) However if I look at the responses or try to export the responses, the value for that field is “array”. No values, just the word “Array”.
My code:
<div style="text-align:center"><label> Will you be attending?</label>
<strong>[radio attendance label_first "Yes" "No"]</strong></div>
[group said-yes]
<div class="row">
<div class="col-md-5">
<label> <strong>First Name </strong> (required)
[text* your-fname-y] </label>
</div>
<div class="col-md-5">
<label> <strong>Last Name </strong> (required)
[text* your-lname-y] </label>
</div>
<div class="col-md-2">
<label> <strong>Number attending </strong></label>
[select num-guests "Just me" "Me and 1 guest"]
</div>
</div>
[group guest]
<div class="row">
<div class="col-md-5">
<label> <strong>Guest First Name </strong>
[text guest-fname] </label>
</div>
<div class="col-md-5">
<label> <strong>Guest Last Name </strong>
[text guest-lname] </label>
</div>
</div>
[/group]
<div class="row">
<div class="col-md-5">
<label> <strong>Your Phone </strong>
[tel your-phone] </label>
</div>
<div class="col-md-5">
<label> <strong>Your Email </strong>
[email your-email] </label>
</div>
</div>
<label> <Strong>Dietary Restrictions</strong> (check all that apply)</label>
[checkbox dietary "No Dietary Restrictions" "Gluten Free" "Vegetarian" "No Dairy"]
<p><br/>-- Please park in the parking deck located at --<br/>
<strong>917 22nd Street North
Birmingham, AL 35203</strong></p>
<p>Bring in parking ticket for validation.</p>
<div class="wpcf7-mail-sent-ok"> <Strong> <p>Thank you for your RSVP to the Inaugural Stars of Hope Gala.</p>
<p>We look forward to seeing you on October 11th!</p></strong></div>
[/group]
[group said-no]
<div class="row">
<div class="col-md-5">
<label> <strong>First Name </strong> (required)
[text* your-fname-n] </label>
</div>
<div class="col-md-5">
<label> <strong>Last Name </strong> (required)
[text* your-lname-n] </label>
</div>
</div>
<div class="wpcf7-mail-sent-ok"> <Strong> <p>Thank you for your RSVP to the Inaugural Stars of Hope Gala.</p>
<p>We are sorry that you will not be able to join us. Legacy of Hope appreciates you and the contributions you make to enhance organ and tissue donation in Alabama.</p></strong></div>
[/group]
<div style="text-align:center">[submit "Confirm"]</div>
<style>
.wpcf7-list-item { margin: 0 .5em; 0 .5em;
position: relative;
left:-15px;}
</style>
]]>