Hello can anybody advise how to place checkbox with profile field option?
I am saving the form with profile.php everything works fine but the checkbox. (textfield works fine).
I have tried this:
Code:
<input type="checkbox" value="$bbuserinfo[field29]" name="userfield[field29][]" id="cb_cpf_field29_1"/>
this doesnt load wheter checkbox is checked or not and if I check nothing is saved.
and this
Code:
<input type="checkbox" value="$bbuserinfo[field29]" name="userfield[field29][]" id="cb_cpf_field29_1" <if condition="$bbuserinfo[field29] =='1'">checked="checked"/if> />
But this load "checked" in whatever case and doesnt save "unchecked" option.
Can anybody advise how to proceed with this checkbox field?
THANK YOU!!!