MyBB Community Forums

Full Version: Disabling hide me from who's online
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How could I do this?

I was thinking about the possibility that when users set the option to 'yes' it always returns to no.
You could remove the option complety through the template:

Templates > Modify / Delete> temp name > edit > User Control Panel Templates > usercp_options > remove "<td valign="top" width="1"><input type="checkbox" name="invisible" id="invisible" value="yes" $invisiblecheck /></td>
<td><span class="smalltext"><label for="invisible">$lang->invisible_mode</label></span></td>
</tr>"
Don't know why but since I did this my usercp went back into the English language.. :s
Open usercp.php

Find

	if($mybb->input['invisible'] != "yes")
	{
		$mybb->input['invisible'] = "no";
	}

Replace By

	if($mybb->input['invisible'] != "no")
	{
		$mybb->input['invisible'] = "no";
	}