MyBB Community Forums

Full Version: Being invisible
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey

How to stop members from being invisible in the whois online zone?

Thank you
Run this SQL query in phpmyadmin:

UPDATE mybb_users SET invisible='0' WHERE invisible='1' 

Then go to your usercp_options template and delete:

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