MyBB Community Forums

Full Version: How can I stop my users from logging in as invisible?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.

Sorry if this has been covered before.

Is there a way I can stop all my users from logging in as invisible?

Thanks in advance.
From the member_register and usercp_options template, find and remove:

<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>

May not be 100% the same in both but it's the row that contains that option.
Cool, thanks Smile

Is there a way I can turn the feature off completely? Because some members are already doing it?
Run this is phpMyAdmin:
UPDATE `mybb_users` SET `invisible` = '0'; 

That will change all members to visible.