This is the WHERE part of the query to grab information for users on the showgroup.php page:
PHP Code:
SELECT user.*,
usergroup.usergroupid, usergroup.title,
user.options, usertextfield.buddylist,
" . ($show['locationfield'] ? 'userfield.field2,' : '') . "
IF(user.displaygroupid = 0, user.usergroupid, user.displaygroupid) AS displaygroupid
As you can see, all the usertextfields are not grabbed, only the location field if needed. So, if you want other usertextfields, you will have to actually edit that code (you can't use a plugin there) to grab it.