inherit
255596
0
Jul 3, 2018 15:08:34 GMT -8
wakeupdonnie
2
July 2018
wakeupdonnie
|
Post by wakeupdonnie on Jul 3, 2018 5:30:43 GMT -8
Hi there,
In the Members List it is possible to see when people were Last Online. Is there anyway to restrict certain members from seeing this information? I can delete it via Themes > Layout Templates > Members and deleting the 'Last Online' column. However I would like the Admin to be able to view this, but not everyone else.
Is there anyway to restrict?
Thanks in advance for any help!
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,530
August 2015
socalso
|
Post by Scott on Jul 3, 2018 5:50:27 GMT -8
wakeupdonnie , Go to Admin > Structure > Layout Templates > Members Find this line... <th class="last-online last $[sortable_class.last_online]">Last Online</th> ...and replace it with this: {if $[current_user.is_staff]} <th class="last-online last $[sortable_class.last_online]">Last Online</th> {/if} Save Changes. Then click on the Member List tab and find this line... <td class="last-online last">{if $[user.is_online]}Member is Online{else}$[user.last_online]{/if}</td> ...and replace it with this: {if $[current_user.is_staff]} <td class="last-online last">{if $[user.is_online]}Member is Online{else}$[user.last_online]{/if}</td> {/if} Save Changes. Please note this is a per theme modification. If you have more than one theme available you will need to do it to each theme. Also this modification will not affect those who are able to access the member's list using the mobile version.
|
|
inherit
255596
0
Jul 3, 2018 15:08:34 GMT -8
wakeupdonnie
2
July 2018
wakeupdonnie
|
Post by wakeupdonnie on Jul 3, 2018 13:16:45 GMT -8
Also this modification will not affect those who are able to access the member's list using the mobile version. Thanks for your help - any solution to those on mobile being able to see?
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jul 3, 2018 13:18:58 GMT -8
The layout of the mobile version of the forum is unable to be modified at this time. Sorry.
|
|