MyBB Community Forums

Full Version: How to remove "Hide from Who's Online List" Option
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I remove this option from the User CP, as well as the registration form?
Try setting the option to hidden on the registration page, on user cp just remove it from the templates.
Template: usercp_options

Code to modify:
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="invisible" id="invisible" value="1" {$invisiblecheck} /></td>
<td><span class="smalltext"><label for="invisible">{$lang->invisible_mode}</label></span></td>

Template: member_register

Code to modify:
<tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="invisible" id="invisible" value="1" {$invisiblecheck} /></td>
<td valign="top"><span class="smalltext"><label for="invisible">{$lang->invisible_mode}</label></span></td>
</tr>

Try changing input type for both instances:
input type="hidden"
Remove the code chunk for label.
I just make this mod on my theme templates and the Invisible mode is still there, on registration form (not on profile options). I try to remove the code (the topic is here) and...the option is still there!!!!!! How is it possible?
its working thanks!