MyBB Community Forums

Full Version: Disable the "Inivisible" option?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I want to disable the invisible option from the user CP, I mean I want to disable the "Hide me from the Who's Online list."

Smile

Thanks
Remove this from the usercp_options template:

<fieldset class="trow2">
<legend><strong>{$lang->login_cookies_privacy}</strong></legend>
<table cellspacing="0" cellpadding="2">
<tr>
<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>
</tr>
</table>
</fieldset>
<br />
Thank you Matt Smile
But this will only hide it from templates, invisible users will still be there, isn't it possible to disable it?