Beyonder
New Member
OMNIPOTENCE
Posts: 15
inherit
219834
0
Dec 3, 2024 9:56:21 GMT -8
Beyonder
OMNIPOTENCE
15
March 2015
beyonder
|
Post by Beyonder on Dec 1, 2024 5:55:32 GMT -8
I noticed there isn't a "Only Me" privacy setting for email displays is there a way for this be possible? Just a general question for those who will search for such a thing.
|
|
inherit
6871
0
Jun 10, 2024 2:25:35 GMT -8
bigballofyarn
"If you wish to make an apple pie from scratch, you must first invent the universe." -Carl Sagan
7,912
January 2003
bigballofyarn
|
Post by bigballofyarn on Dec 1, 2024 6:33:37 GMT -8
I'd imagine a user's email address needs to be visible to at least the staff in the event the admin or people with banning powers need to ban a user's global account.
|
|
Beyonder
New Member
OMNIPOTENCE
Posts: 15
inherit
219834
0
Dec 3, 2024 9:56:21 GMT -8
Beyonder
OMNIPOTENCE
15
March 2015
beyonder
|
Post by Beyonder on Dec 1, 2024 10:04:14 GMT -8
I'd imagine a user's email address needs to be visible to at least the staff in the event the admin or people with banning powers need to ban a user's global account. Also true, but we should be able to view them via the admin panels.
|
|
#eb7100
1480
0
1
Dec 4, 2024 4:15:04 GMT -8
Craig
209,210
September 2001
cmdynasty
|
Post by Craig on Dec 1, 2024 12:44:42 GMT -8
I'd imagine a user's email address needs to be visible to at least the staff in the event the admin or people with banning powers need to ban a user's global account. Also true, but we should be able to view them via the admin panels. Just to clarify, perhaps. If you set it to 'Share with Staff only', then only staff on the forum will be able to see the email address. Other people on the forum won't be able to see it. You can edit the template and remove that part of the profile from showing to other members: Admin > Themes > Layout Templates > User Profile > Summary{if $[user.email]}
<tr>
<td class="headings">Email:</td>
<td>$[user.email]</td>
</tr>
{/if}
Replace with this: {if $[user.email] && $[current_user.is_staff]}
<tr>
<td class="headings">Email:</td>
<td>$[user.email]</td>
</tr>
{/if} The email section will then only show to staff members. However, it is important to note that this will only affect the desktop version of the site.
|
|
Beyonder
New Member
OMNIPOTENCE
Posts: 15
inherit
219834
0
Dec 3, 2024 9:56:21 GMT -8
Beyonder
OMNIPOTENCE
15
March 2015
beyonder
|
Post by Beyonder on Dec 2, 2024 1:46:44 GMT -8
Also true, but we should be able to view them via the admin panels. Just to clarify, perhaps. If you set it to 'Share with Staff only', then only staff on the forum will be able to see the email address. Other people on the forum won't be able to see it. You can edit the template and remove that part of the profile from showing to other members: Admin > Themes > Layout Templates > User Profile > Summary{if $[user.email]}
<tr>
<td class="headings">Email:</td>
<td>$[user.email]</td>
</tr>
{/if}
Replace with this: {if $[user.email] && $[current_user.is_staff]}
<tr>
<td class="headings">Email:</td>
<td>$[user.email]</td>
</tr>
{/if} The email section will then only show to staff members. However, it is important to note that this will only affect the desktop version of the site. Only desktop? That doesn't sound too bad! Thanks!
|
|
#eb7100
1480
0
1
Dec 4, 2024 4:15:04 GMT -8
Craig
209,210
September 2001
cmdynasty
|
Post by Craig on Dec 2, 2024 3:19:45 GMT -8
Only desktop, yes. Glad it helped
|
|