Hello,
I just installed v.3.0 stable in Joomla 1.5.7 and love the ease of use.. I have searched through the forums and must say, these are some of the most helpful developers I have seen in a long time! Props to a great extension and great support.
On to the 'Pilot Error' I'm experiencing,.. like some of your users I'm not adept at forms.. So, I'll drop all the code I have on here and see where we can make it work.
The 'problem'.. I get the email fine, but the check box data does not come through. Specifically, I have 3 check boxes, one is required and only one.. to be checked.. I need that data in the email as well..
Here is the form code:
Here is my Email Template code:
HTML
and viewable template:
Here is what comes through in the email:
Any help is greatly appreciated!
Thanks again,
Jesse
I just installed v.3.0 stable in Joomla 1.5.7 and love the ease of use.. I have searched through the forums and must say, these are some of the most helpful developers I have seen in a long time! Props to a great extension and great support.
On to the 'Pilot Error' I'm experiencing,.. like some of your users I'm not adept at forms.. So, I'll drop all the code I have on here and see where we can make it work.
The 'problem'.. I get the email fine, but the check box data does not come through. Specifically, I have 3 check boxes, one is required and only one.. to be checked.. I need that data in the email as well..
Here is the form code:
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label">Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_9" name="text_9" type="text">
<a onclick="return false;" class="tooltiplink">
<img src="components/com_chronocontact/css/images/tooltip.png" class="tooltipimg" border="0" height="16" width="16"></a>
<div class="tooltipdiv">Name :: Please enter your name here</div></div>
<div class="clear"> </div></div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label">Email</label><input class="cf_inputbox required validate-email" maxlength="150" size="30" id="text_8" name="text_8" type="text"><a onclick="return false;" class="tooltiplink"><img src="components/com_chronocontact/css/images/tooltip.png" class="tooltipimg" border="0" height="16" width="16"></a><div class="tooltipdiv">Email :: Please enter your email address here</div></div><div class="clear"> </div></div><div class="form_item"><div class="form_element cf_checkbox"><label class="cf_label">Pizza Selection</label>
<div class="float_left">
<input value="check" class="radio validate-one-required" id="Meat" name="check[]" type="checkbox">
<label for="Meat" class="check_label">Meat</label>
<br>
<input value="check" class="radio" id="Veggie" name="Veggie" type="checkbox"><label for="Veggie" class="check_label">Veggie</label>
<br>
<input value="check" class="radio" id="None_for me" name="check[]" type="checkbox">
<label for="None_for
_me" class="check_label">None For Me</label>
<br>
</div>
<a onclick="return false;" class="tooltiplink"><img src="components/com_chronocontact/css/images/tooltip.png" class="tooltipimg" border="0" height="16" width="16"></a><div class="tooltipdiv">Pizza Selection :: Please choose one</div></div><div class="clear"> </div></div><div class="form_item"><div class="form_element cf_captcha"><label class="cf_label">Verification</label><span>{imageverification}</span><a onclick="return false;" class="tooltiplink"><img src="components/com_chronocontact/css/images/tooltip.png" class="tooltipimg" border="0" height="16" width="16"></a><div class="tooltipdiv">Verification :: Please enter the code as seen on your screen</div></div><div class="clear"> </div></div><div class="form_item"><div class="form_element cf_button"><input value="Submit" name="undefined" type="submit"></div><div class="clear"> </div></div>
Here is my Email Template code:
HTML
<div class="form_item">
<div class="form_element cf_textbox"><label class="cf_label">Name</label><span>: {text_9}</span>
<div class="tooltipdiv"><br /></div>
</div>
</div>
<div class="form_item">
<div class="form_element cf_textbox"><label class="cf_label">Email</label><span>: {text_8}</span>
<div class="tooltipdiv"><br /></div>
</div>
</div>
<div class="form_item">
<div class="form_element cf_checkbox"><label class="cf_label">Pizza Selection</label>
<div class="float_left"><br />{check[]}<br /></div>
</div>
</div>
and viewable template:
Name: {text_9}
Email: {text_8}
Pizza Selection
{check[]}
Here is what comes through in the email:
Name: Abc Def
Email: abc_def@hotmail.com
Pizza Selection
check
Any help is greatly appreciated!
Thanks again,
Jesse