PDA

View Full Version : Profile Fields


xGriffin
01-12-2009, 07:46 AM
I want something like this

Location: USA
Age: 36
Posts: 67,348
Favourite movie: The Dark Knight

I have added a new profile field, but i don't know how to get the fav movie thing to display. Any help would be appreciated, thanks :)

Digital Jedi
01-12-2009, 07:56 AM
<a href="http://www.vbulletin.com/forum/showthread.php?t=235454&highlight=field" target="_blank">How to add custom profile field below user title ?</a>

Just change the location to where ever you want it.

dismas
01-12-2009, 07:57 AM
Change the X to whatever the number of the profile field is.

You could use a conditional:

<if condition="$post['fieldX']">
Favorite movie: $post[fieldX]
</if>


If you want it to show up, regardless of whether they've entered a favorite film, then just remove the conditionals.

xGriffin
01-12-2009, 08:01 AM
Many thanks :)