PDA

View Full Version : custom field in postbit_legacy


rsoxhater
07-24-2004, 03:59 AM
I have a custom profile field that I have created. It stores a number that can only be set by an admin. I'd like it to appear just like the Trader Rating in this forum:
http://www.hoopscollector.com/forum/showthread.php?t=4



But it would say:

TR Feedback Rating: (#from profile here)

I know i would have to edit the postbit_legacy field, but how would I pull that number out of the database? It'll be a static number set only by the admin. Whats the best way to do this? I'm completely new to VBulletin but enjoying all the great features it has.

Thanks!

TRStealth
07-24-2004, 04:11 AM
Look for in postbit_legacy:


$vbphrase[posts]: $post[posts]


Add Under:


<br>
TR Feedback Rating: ($post[fieldx])


Where the x is the # in the custom field manager of the field you want.

rsoxhater
07-24-2004, 04:32 AM
Perfect! Thanks!