The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
You could do this using simple template conditionals. For information that you wish to hide from guests, edit the template and add:
Code:
<if condtion=$bbuserinfo['userid']> Code:
</if> For example, if you wanted to hide the "Welcome to our newest member..." message on the homepage, you would need to edit the FORUMHOME template and find: Code:
<div> <phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase> </div> Code:
<if conditional="bbuserinfo['userid']"> <div> <phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase> </div> </if> Hiding the information that you requested in your first post should just be a case of looking through the templates to find it, then wrapping it in the above <if> tags. Most of the info you wish to hide should be in the FORUMHOME template. ![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|