An Introduction to Custom Profile Fields 
vBulletin features a wide array of input options for you to gather information from your members through the creation of custom profile fields. With these fields you can present a list of options for the user to choose from or you can ask the user to give their own input. You can even combine the two options for maximum usability.

There are six input options for you to choose from to tailor your required data collection method.These fields can be required at registration or you can have them be shown after registration via the user's profile and options in the User CP. Administrators can make profile fields able to be edited only during registration or anytime.
User Contributed Notes: An Introduction to Custom Profile Fields Add a Comment
Brad <brad at synergy-core dot net> Apr 20th '05, 12:06pm
Once you add new custom profile fields you may use them in your templates just about anywhere.

For example say I added a new custom profile field for Real names, lets say that this is the 10th custom profile field on my board.

If I wanted to show this in the postbit I could add this to that template:

<if condition"$post['field10']">
Real name: $post[field10]<br />
<else />
<br />
</if>

What that basicly dose if check to see if the user entered anything into field 10, if so it will display this information, if not it will just insert a <br />.

If you need more information on using condition's like this, check out the support forums (www.vbulletin.com/forum) or the offical vBulletin template resource (www.vbulletin.org)
Add a Comment