The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Hide the admin "current activity" in profile?
I want to hide the current activity of the admin (me) in my profile. It shows in two places: Just under the "last activity" at the top and in the statistics tab.
on the vb forums they suggested using the invisible mode, but I don't want to go invisible and make myself look like I'm offline. Thanks. |
#2
|
|||
|
|||
The only way I can think of is using an <if condition=""><else /></if>
Something like if is admin don't show the last activity else show it Not sure what you would put in the condition parameter |
#3
|
|||
|
|||
Probably my profile id, which is "2". Not sure what the code is...maybe someone can help out.
|
#4
|
||||
|
||||
Are you trying to hide *your* activity or every admin's (ie. user in usergroupid 6) activity from other users?
If yours, you can try: HTML Code:
<if condition="$bbuserinfo['userid'] == '2'"> the line to hide from all except userid 2 </if> HTML Code:
<if condition="$bbuserinfo['usergroupid'] == '6'"> the line to hide from all but usergroupid 6 </if> |
#5
|
|||
|
|||
Quote:
What do I put between those <if tags in the MEMBERINFO template? I got a little confused |
#6
|
|||
|
|||
what part of template does this go to hide admin 2 thanks
|
#7
|
|||
|
|||
Ok, I get it. I had a brain fart or something. This works BUT, it doesn't allow members to see what other members are doing. I want everyone to see everyone's current activity as normal except not be able to see the admins current activity.
|
#8
|
|||
|
|||
Go find the code that shows the activity, then use what Lynne gave you:
PHP Code:
|
#9
|
|||
|
|||
It still doesn't allow regular members to see other members current activity..
|
#10
|
||||
|
||||
Ah, I see. Try changing it to:
HTML Code:
<if condition="$prepared['userid'] != '2'"> the code that shows current activity </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|