I have an issue with Contact Form7 with Pipe and with multiple Conditions. My code is pasted below :
****************************************************************
<label> The fields marked with * in this form are mandatory </label>
<label > </label>
Your Name (your login user name will be displayed here): [text* your-name readonly default:user_display_name]
<label> I want to talk to : *</label>
[select* menu-13 first_as_label “Select a Department from the list” “HR” “IT”]
[group HR]
<label> Choose a Category *</label>
[select* your-recipient first_as_label “Select a catagory the list”
“Suggestion | [email protected]”
“Feedback | [email protected]”
“Query | [email protected]”]
[/group]
</br>
[group IT]
<label> Choose a Category *</label>
[select* your-recipient first_as_label “Select a catagory the list”
“Suggestion | [email protected]”
“Feedback | [email protected]”
“Query | [email protected]”]
[/group]
<label > </label>
<label> I want to talk about *</label>
[text text-248 placeholder akismet:author "Subject - a short description of your topic"]
<label> Let’s talk *</label>
[textarea* textarea-169 placeholder “Detailed description of your idea / suggestion / feed back”]
<label> If you like us to contact you back, provide your details:</label>
Your contact number [text text-769 placeholder "Your contact number"]
Your email ID (as per your login user details)
[email* your-email readonly default:user_email]
[submit “Send your form”]
**************************************************************************
The form is working when we select IT ie [group IT] [/group] and I am getting proper mail, but for [group HR] [/group] the your-receipiet field is coming as blank, thus mail is not going. I have defined the conditions IF IT then IT & IF HR then HR in the conditional fields and form is properly displaying based on conditions. I am wondering why my first group condition is working while the second one not. Please help me ..