You need to make sure you call userfield.* in the .php file. You would do that in the same array you are calling for other user info. The array would look similiar to this.
Code:
$users = $db->query_read_slave("
SELECT user.*, usergroup.usergroupid, usergroup.title, user.options, usertextfield.*, userfield.*,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid
FROM " . TABLE_PREFIX . "usergroup AS usergroup
LEFT JOIN " . TABLE_PREFIX . "user AS user ON(user.usergroupid = usergroup.usergroupid OR FIND_IN_SET(usergroup.usergroupid, user.membergroupids))
LEFT JOIN " . TABLE_PREFIX . "userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid=user.userid)
");
Your loop probably looks something like this.
Code:
while ($userinfo = $vbulletin->db->fetch_array($users))
Take note of your first variable there, $userinfo in this case.
In your template, you would put $userinfo['fieldX'] where you want to display the data.
Take a look at the code I have for my
Showroster Hack if you want more idea's on this. I'm using a lot of extra fields in that.
Good luck.