OK, try this: create a new plugin using hook forumhome_complete and this code:
Code:
if (is_array($newuserinfo))
{
$newuserinfo = array_merge($newuserinfo, fetch_userinfo($newuserinfo['newuserid']));
}
Then edit the FORUMHOME template and find welcome_to_our_newest_member_x (which is the existing phrase), and add {vb:var newuserinfo.fieldX} (once for each field) where you want to add the new fields.