MyBB Community Forums

Full Version: Hide me from online list ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can i remove "Hide me from online list" from account preferences when registering ?
You will have to remove the option by editing the Template User Control Panel.
Ok cheers bob Smile
You know what exact template inside User Control Panel ?
Ok this removes it from the usercp :
<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>

But how do i also remove it from the registration part?
Ah thats it , thanks m8 Smile
No problem. Big Grin
If someone has already selected this option will that option be reset or will they now not be able to set it back to default ?
(2010-05-30, 09:17 PM)dunlop03 Wrote: [ -> ]If someone has already selected this option will that option be reset or will they now not be able to set it back to default ?
They will now not be able to switch back to default but you can switch their setting via the phpMyAdmin.
Run this sql in your phpmyadmin db.
UPDATE mybb_users SET invisible = '0' WHERE invisible = '1'
And how exactly will i do that, i dont like messing around on phpmyadmin unless im 100% sure of what im doing :s
Pages: 1 2