https://www.icyphoenix.com/viewtopic.php?f=35&t=3250
-----------------------------------
law
Sat 15 Dec, 2007 13:10

[SOLVED]Hidden Status
-----------------------------------
Hi,

I want to remove the option for set hidden the user status. It's possible ?

Thnak you.


-----------------------------------
novice programmer
Sat 15 Dec, 2007 13:20

Re: Hidden Status
-----------------------------------
Just a litlle bit of template editing nedded...


-----------------------------------
Gomesh
Sat 15 Dec, 2007 23:11

Re: Hidden Status
-----------------------------------
[--OPEN--]

./templates/templatexxx/profile_add_body.tpl

FIND
[codeblock]<tr>
	<td class="row1"><span class="gen">{L_HIDE_USER}:</span></td>
	<td class="row2">
		<label><input type="radio" name="hideonline" value="1" {HIDE_USER_YES} /><span class="gen">&nbsp;{L_YES}</span></label>&nbsp;&nbsp;
		<label><input type="radio" name="hideonline" value="0" {HIDE_USER_NO} /><span class="gen">&nbsp;{L_NO}</span></label>
	</td>
</tr>[/codeblock]
REPLACE WITH
[codeblock]<!--
<tr>
	<td class="row1"><span class="gen">{L_HIDE_USER}:</span></td>
	<td class="row2">
		<label><input type="radio" name="hideonline" value="1" {HIDE_USER_YES} /><span class="gen">&nbsp;{L_YES}</span></label>&nbsp;&nbsp;
		<label><input type="radio" name="hideonline" value="0" {HIDE_USER_NO} /><span class="gen">&nbsp;{L_NO}</span></label>
	</td>
</tr>
-->[/codeblock]

Run this query in your Database Managment (In ACP, in Mysql or Other)

[b]UPDATE phpbb_users SET user_allow_viewonline=1;[/b]


