PDA

View Full Version : Custom Profile Field


ShutDown23
05-02-2004, 06:29 PM
I think this may have been made before but, i looked everywhere and couldn't find it.

What I'm locking for a mod that lets you add my custom profile field to the post bit. So, If they enter there favorite team it shows:

Favorite Team: TEAM HERE

Under the number of posts the person has.

Thanks!

ShutDown23
05-04-2004, 07:23 PM
Sorry to bump but, anyone?

Tony G
05-05-2004, 05:07 AM
This is all I have:

Open postbit_legacy (hopefully you're using the postbit_legacy as you did not specify so)

Under:

<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>

Add:

<if condition="$post['field5']"><div>$vbphrase[notworking]: $post[fieldX]</div></if>

-------------------

First you need to change 'X' to the field # you have created your new field in (you'll see through your user field manager) I haven't been able to figure out the variable used to call the NAME of a profile field. field5 or anything doesn't work. So someone else might know, or just hardcode the name in.

ShutDown23
05-08-2004, 02:10 AM
Thank you.