I'm having a problem using the Chronoforms extension. I have been able to create the form, and I let Chronoform make a email template for the form, but everytime I send an email to myself after testing the form, ever radiobox and checkbox entry comes back in the list, with nothing marked. I am not a web designer by any means, just an IT guy that was stuck on a html job when he knows nothing about it Below is the code from the email template, I would only like the option that was selected to be emailed back. If someone could actually show me what I need to take out or add in, it would be appreciated because all of this looks like sanskrit to me. Thanks in advance for any help.
<div class="form_item">
<div class="form_element cf_textarea"><label class="cf_label" style="width: 150px;">Attendant 2 (Name, Title, & Email Address:</label> <span>{text_17}</span></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textarea"><label class="cf_label" style="width: 150px;">Attendant 3 (Name, Title, & Email Address:</label> <span>{text_18}</span></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">How did you hear about this show? (Please check all that apply)</label>
<div class="float_left"><span>{check0}</span> <label class="check_label" for="check00">Co-worker</label> <br /><span>{check0}</span> <label class="check_label" for="check01">E-Mail</label> <br /><span>{check0}</span> <label class="check_label" for="check02">Newspaper</label> <br /><span>{check0}</span> <label class="check_label" for="check03">Sales Representative</label> <br /><span>{check0}</span> <label class="check_label" for="check04">Telephone</label> <br /><span>{check0}</span> <label class="check_label" for="check05">US Postal Mailer</label> <br /><span>{check0}</span> <label class="check_label" for="check06">Website</label> <br /><span>{check0}</span> <label class="check_label" for="check07">Other*</label> <br /></div>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textarea"><label class="cf_label" style="width: 150px;">Other*</label> <span>{text_24}</span></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_radiobutton"><label class="cf_label" style="width: 150px;">Do you have a current Sales Representative at PCC?</label>
<div class="float_left"><span>{radio1}</span> <label class="radio_label" for="radio10">Yes</label> <br /><span>{radio1}</span> <label class="radio_label" for="radio11">No</label> <br /></div>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textarea"><label class="cf_label" style="width: 150px;">If yes, who is your sales rep?</label> <span>{text_27}</span></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">Please select which Seminars you are planning to attend:</label>
<div class="float_left"><span>{check2}</span> <label class="check_label" for="check20">9:45am - 10:45am ~ AIA Accreditation Class</label> <br /><span>{check2}</span> <label class="check_label" for="check21">10:55am - 11:30am ~ Learn About What's New in Video Conferencing</label> <br /><span>{check2}</span> <label class="check_label" for="check22">11:40am - 12:15pm ~ Enhance Your Audio in the Boardroom</label> <br /><span>{check2}</span> <label class="check_label" for="check23">12:30am - 1:05pm ~ How to Buld Exciting, Interactive Lesson Activities</label> <br /><span>{check2}</span> <label class="check_label" for="check24">1:15pm - 1:50pm ~ Sanyo-How short is shot?</label> <br /></div>
Hi hardie13,
ChronoForms makes fair guesses when it creates an automatic Email Template, except for checkbox groups when it gets them badly wrong. You need to remove this whole chunk of code
And the same for the second checkbox array later in the template.
Bob
ChronoForms makes fair guesses when it creates an automatic Email Template, except for checkbox groups when it gets them badly wrong. You need to remove this whole chunk of code
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">How did you hear about this show? (Please check all that apply)</label>
<div class="float_left"><span>{check0}</span> <label class="check_label" for="check00">Co-worker</label> <br /><span>{check0}</span> <label class="check_label" for="check01">E-Mail</label> <br /><span>{check0}</span> <label class="check_label" for="check02">Newspaper</label> <br /><span>{check0}</span> <label class="check_label" for="check03">Sales Representative</label> <br /><span>{check0}</span> <label class="check_label" for="check04">Telephone</label> <br /><span>{check0}</span> <label class="check_label" for="check05">US Postal Mailer</label> <br /><span>{check0}</span> <label class="check_label" for="check06">Website</label> <br /><span>{check0}</span> <label class="check_label" for="check07">Other*</label> <br /></div>
</div>
<div class="cfclear"> </div>
</div>
and replace it with <div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">How did you hear about this show? </label>
<div class="float_left">{check0}</div>
</div>
<div class="cfclear"> </div>
</div>
and make sure that you have "ChronoForms handle my posted arrays" set to 'Yes' in the Form general Tab.And the same for the second checkbox array later in the template.
Bob
Thank you for your help Bob, it is greatly appreciated. What do I do about the radio buttons?
For the second Checkbox option I changed it to this, and it did not work
I'm hesitant to start messing around with the radio buttons since I was unable to even complete the second checkbox lol
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">Please select which Seminars you are planning to attend:</label>
<div class="float_left"{check0}</div>
</div>
<div class="cfclear"> </div>
</div>
I'm hesitant to start messing around with the radio buttons since I was unable to even complete the second checkbox lol
Hi hardie13,
You need to replace {check0} in there with {check2} for the second checkbox group; and make a copy with {radio1} for the radio buttons.
Bob
You need to replace {check0} in there with {check2} for the second checkbox group; and make a copy with {radio1} for the radio buttons.
Bob
I have this now, and nothing appears in the email for these checkboxes other then the title.
I really appreciate all of your help Bob, thanks!
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label" style="width: 150px;">Please select which Seminars you are planning to attend:</label>
<div class="float_left"{check2}</div>
</div>
<div class="cfclear"> </div>
</div>
I really appreciate all of your help Bob, thanks!
This topic is locked and no more replies can be posted.