MyBB Community Forums

Full Version: make users unable to hide themselves on online list?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2016-01-22, 11:34 PM)johnnyvang Wrote: [ -> ]
(2015-10-19, 11:48 AM)Darkrad Wrote: [ -> ]I want users have no option to hide themselves in online list. Is it possible?

You can delete the settings from the signup form.
templates -> default -> member templates -> member_register
Find ( between line 88 to 91) :
<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>

Replace with:
<!-- <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> -->

Now it's not possible to see or select the hide option on the signup form.
Not sure where we can change it in the members profile or what template we need.

You could just do inspect element and add it manually, and then hit "save". :^)
Pages: 1 2