Pagina 1 van 1
Onzichtbaar in 'Online gebruikers' lijst verwijderen...?
Geplaatst: 21 feb 2007, 17:25
door CadmanF
Ik wil graag deze optie in je profiel lijst verwijderen...:
Onzichtbaar in 'Online gebruikers' lijst Ja/nee
Zodat niemand meer kan kiezen dat hij onzichtbaar is op het forum... Ik wil gewoon dat iedereen zichtbaar is op het forum, hoe kan ik dit het beste oplossen...?
Alvast bedankt...
Geplaatst: 21 feb 2007, 17:33
door svenn
de optie uit profile_add_body.tpl halen in de templates map.
Geplaatst: 21 feb 2007, 17:45
door MoonCatcher
je hebt er ook een mod voor, waarbij leden het niet kunnen aanvinken en jij als admin wel
Geplaatst: 24 feb 2007, 14:34
door Babbler
Code: Selecteer alles
##############################################################
## MOD Title: Unhide MOD
## MOD Author: Wicher < thecoin@detecties.com > (Wicher) http://www.detecties.com/MadeMods
## MOD Description: This mod rules out the possibility for users to hide them selves for other users. Also when they visit there profile and they press the ok button they will be set visible.
## MOD Version: 1.1.5
## PHPBB versions: 2.0.6 - 2.0.18
## Installation Level: (Easy)
## Installation Time: 1 Minute
## Files To Edit:
## templates/SubSilver/profile_add_body.tpl
## Included Files: n/a
##
##############################################################
## Author Notes:
## Via "User Admin" in the ControlPanel the admin can still make users hidden.
##############################################################
## MOD History:
##
## 2005-07-12 - Version 1.1.5
## - Letting know its phpbb 2.0.6 - 2.0.18 compatible.
## - Changed the mod a little, not mutch, just some spaces.
## - If previous version was installed there is no need for reinstalling this version.
##
## 2005-07-12 - Version 1.1.4
## - Letting know its phpbb 2.0.6 - 2.0.16 compatible.
##
## 2004-06-14 - Version 1.1.3
## - Added some Author Notes.
##
## 2004-06-14 - Version 1.1.2
## - Fixed tipo
##
## 2004-06-14 - Version 1.1.1
## - first release [beta]
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/SubSilver/profile_add_body.tpl
#
#-----[ FIND AND DELETE ]------------------------------------------
#note: there might be somewhat more or less spaces before the lines in your file.
<input type="radio" name="hideonline" value="1" {HIDE_USER_YES} />
<span class="gen">{L_YES}</span>
#
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Geplaatst: 24 feb 2007, 15:45
door CadmanF
Ik werk met de laatste update van het forum... Dus volgens mij is hij niet compatible met de mijne...
In ieder geval, als ik die 2 regels verwijder, en weer upload, dan krijg ik steeds als ik dan naar mijn profiel ga, dan is het knopje weg ja alleen alle andere info is ook weg... Geen ingevoerde tekst meer, alleen alle invulopties met hoofdletters tussen haakjes... Komt dit bij iemand anders ook bekend voor..? En met welk programma voor de Mac kan je dat het beste aanpassen, ik doe het nu met Plaknotities...
Geplaatst: 24 feb 2007, 18:16
door Babbler
ik gebruik 'm ook bij de allerlaatste versie van
PHPBB 2.0.22
en is verder niets aan de hand ....doet het prima
Deze is orgineel :templates/SubSilver/profile_add_body.tpl
Code: Selecteer alles
<tr>
<td class="row1"><span class="gen">{L_HIDE_USER}:</span></td>
<td class="row2">
<input type="radio" name="hideonline" value="1" {HIDE_USER_YES} />
<span class="gen">{L_YES}</span>
<input type="radio" name="hideonline" value="0" {HIDE_USER_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
Deze is na het verwijderen van de twee regels ...... templates/SubSilver/profile_add_body.tpl
Code: Selecteer alles
<tr>
<td class="row1"><span class="gen">{L_HIDE_USER}:</span></td>
<td class="row2">
<input type="radio" name="hideonline" value="0" {HIDE_USER_NO} />
<span class="gen">{L_NO}</span></td>
</tr>