Log in

View Full Version : Last Activity on profile just for mod & admin to view


Nathan2006
03-15-2006, 02:38 AM
Hello,

Is there a way to have the Last Activity on profile just for moderators & admin to view.

I know that members can view my profile and see if I'm in the admin cp lol

I have added a little pic of what I mean

Thank you for any help :)

007
03-15-2006, 06:31 AM
Change:

<if condition="$show['lastactivity']">
<div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</div>
</if>

To:

<if condition="$show['lastactivity'] AND ($bbuserinfo[usergroup]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7)">
<div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</div>
</if>

:)

Nathan2006
03-15-2006, 12:07 PM
Hi 007,

I tried that but its still showing up the "Admin Control Panel @ 02:05 PM" part to members

Is there anyway of removing this?

Thanks for your help :)

Nathan2006
03-16-2006, 02:57 PM
Hi,

I managed to find the code for that other part but how would I make this so that its for admins & mods only?

<if condition="$show['currentlocation']">
<div>$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time]&nbsp;</div>
</if>


Thanks for any help :)