MyBB Community Forums

Full Version: How to: Tick a checkbox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As you can look to the registration page of sir Yaldaram, you see a ticked checkbox there. Can you guys tell me how to make one? I would like to add it on my site. Smile Thank you!
in the form's input code, you have to use checked="checked" like below (member_register template)
<input type="checkbox" checked="checked" class="checkbox" name="allownotices" id="allownotices" value="1" {$allownoticescheck} />
ok sir. I'll try. Smile

I think it's not working sir, what I mean is if a user doesn't check the checkbox, he cannot click the register button but a user checks the checkbox, the user can now register. Can you tell me how to do it sir??