MyBB Community Forums

Full Version: remove the invisible check box option of the registration or sign in page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to remove the Invisible check box option on the registration/signin page, please.
Would someone please show me how to do this?
Its a long time since I used default MyBB, but is the invisible checked by default? If it ISNT then you can edit your member register template and set the invisible field to hidden :

<input type="hidden" class="checkbox" name="invisible" id="invisible" value="0" {$invisiblecheck} />

and of course remove the "want to hide online text" or whatever it is.
(2014-03-31, 04:36 PM)Leefish Wrote: [ -> ]Its a long time since I used default MyBB, but is the invisible checked by default? If it ISNT then you can edit your member register template and set the invisible field to hidden :

<input type="hidden" class="checkbox" name="invisible" id="invisible" value="0" {$invisiblecheck} />

and of course remove the "want to hide online text" or whatever it is.

What is the file where I will I find this code, please?