The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]()
Yep, it's possible. You'll have to create templates for each that you want to show/not show and copy out the info from the getinfo template for that row and add a bit to member.php.
For example, if I don't want Location to show if it's empty, I'd do the following: 1) Create a new template called getinfo_location with the following in it: Code:
<tr> <td bgcolor="{firstaltcolor}"><normalfont><b>Location:</b></normalfont></td> <td bgcolor="{firstaltcolor}"><normalfont>$userinfo[field2]</normalfont></td> </tr> 3) In member.php find Code:
eval("\$customfields .= \"".gettemplate("getinfo_customfields")."\";"); } Code:
if ($userinfo[field2]!="") { eval("\$userinfo[location] .= \"".gettemplate("getinfo_location")."\";"); } else { $userinfo[location=""; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|