Log in

View Full Version : How do I add custom profile fields?


Wazran
07-09-2008, 01:46 PM
hey,

How do I add custom profile fields where you click one of the fields and it brings you to a different location on the internet? Also how can I make them viewable on the postbit?

vBulletin default skin.

Princeton
07-09-2008, 03:10 PM
not sure what you mean by
click one of the fields and it brings you to a different location
but I hope this helps:
Adding a New Custom Profile Field (http://www.vbulletin.com/docs/html/main/profile_add)

calorie
07-09-2008, 03:11 PM
How To Add A Profile Field To The Postbit (http://www.vbulletin.com/forum/showthread.php?t=108785)

IIRC profile fields don't allow HTML so you'd need to use template conditionals, something like the following assuming the link is meant to be in the postbit:

<if condition="$post[fieldX]">
<!-- HTML you want to display here -->
</if>

Where X is the profile field number.

Wazran
07-09-2008, 08:31 PM
Thanks, I'll try that. :)