Hi tenbucks,
Sure.
Not tested, but you can try this:
In showgroups.php
Find:
PHP Code:
$user['datejoined'] = vbdate($vboptions['dateformat'], $user['joindate'], true);
Under it, add
PHP Code:
$user['lastvisit'] = vbdate($vboptions['dateformat'], $user['lastvisit'], true);
And in template SHOWGROUPS
Find:
PHP Code:
colspan="x" (Where 'X' is the number of columns)
And increase that number by 1
Find:
PHP Code:
<td class="thead" width="20%">$vbphrase[join_date]</td>
Below that, add:
PHP Code:
<td class="thead" width="20%">$vbphrase[last_visit]</td>
Finally, in template showgroups_usergroupbit
Find:
PHP Code:
<td class="$bgclass">$user[datejoined]</td>
Below that, add:
PHP Code:
<td class="$bgclass">$user[lastvisit]</td>
That should work.