Manuel's Development Assistant
Posts: 351
Joined: Jul 2008
Reputation: 0
|
[Modification] Hide from onlinelist for staff only
This post was last modified by Andii S.: 19.01.2010, 01:28.
19.01.2010, 01:07
says:
you need this plugin to make it work
change (usercp_options)
PHP Code:
<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>
to:
PHP Code:
<if $mybb->usergroup['canmodcp'] == 1 then> <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> </if>
you need to delete the invisible part in the member_register template to prevent new registered members hiding from list when register
formerly known as snAke
What you can do to make your (and others) life easier:
What you can do to make my life easier:
- Do not PM right after you've registered, asking if you can post link to your forum, buy ad space, buy whole LiteSoft, or condoms.
- I am not a nice guy, so if you're looking for someone to talk to, go there.
- Do not post in wrong sections.
- Do not ask stupid questions.
- Donate and click on ads.
Reputation: 0
|
|