Here you go Trek, try this out.
Find:
PHP Code:
$userinfo['datejoined'] = vbdate($vbulletin->options['dateformat'], $userinfo['joindate'], true);
$userinfo['lastactive'] = vbdate($vbulletin->options['dateformat'], $userinfo['lastactivity'], true);
Add Below:
PHP Code:
if ($userinfo['usergroupid'] == 19) { $columns['title1'] = "TEST"; $columns['column1'] = "field12"; }
Follow this rule. For "
$userinfo['usergroupid'] == 19", use the usergroupid for the first group appearing on your alternative roster. This will cause the Title and field id for all following usergroups to use the same as the first. You will need to add additional code for each column you wish to change. Feel free to use this at your own discretion, it may break some things, I don't know. I can see a way to trim down the number of columns as well, if you want that, but I'll leave that one up to you.
Enjoy!