Quote:
Originally Posted by Sebastian
its sad vb doesn't allow you to specify if a check box is selected or not. anyone know how to make this possible?
bascially i have a single checkbox, checked means Yes, Unchecked means No.. but i need to make this box checked by default when the users registers...
also, Does anyone know of a conditional to use in postbit template to hide the reply button when the thread is closed?
|
IIRC, adding checked="checked" will make the box be checked by default. I dont know how you have it hardwired in your forums and I dont know for sure this is what you are looking for but here's an example:
Code:
<input type="checkbox" name="receipt" id="cb_receipt" tabindex="1" value="1" checked="checked"/>