For WOL, you'll need two plugins.
online_location_process:
PHP Code:
if ($filename == 'newmembers.php')
{
$userinfo['activity'] = 'newmembers';
}
online_location_unknown:
PHP Code:
if ($userinfo['activity'] == 'newmembers')
{
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'New Members');
$handled = true;
}
For joindate; open newmembers.php and find:
PHP Code:
$bgclass = 'alt2';
Above that add:
PHP Code:
$newmembers['datejoined'] = vbdate($vbulletin->options['dateformat'], $newmembers['joindate'], true);
Edit the newmembers template, find
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr align="center">
<td class="thead" align="$stylevar[left]" nowrap="nowrap">$vbphrase[username]</td>
<td class="thead" nowrap="nowrap">$vbphrase[avatar]</td>
<td class="thead" nowrap="nowrap">$vbphrase[profile_picture]</td>
</tr>
$newmemberbits
</table>
Replace with
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr align="center">
<td class="thead" align="$stylevar[left]" nowrap="nowrap">$vbphrase[username]</td>
<td class="thead" nowrap="nowrap">$vbphrase[avatar]</td>
<td class="thead" nowrap="nowrap">$vbphrase[profile_picture]</td>
<td class="thead" nowrap="nowrap">$vbphrase[join_date]</td>
</tr>
$newmemberbits
</table>
Edit the 'newmembers_results' template. Replace everything with:
HTML Code:
<tr align="center">
<td class="alt1Active" align="$stylevar[left]" id="u$newmembers[userid]"><a href="member.php?$session[sessionurl]u=$newmembers[userid]">$newmembers[username]</a></td>
<if condition="exec_switch_bg()"><td class="$bgclass"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /></td></if>
<if condition="exec_switch_bg()"><td class="$bgclass">$newmembers[profilepic]</td></if>
<if condition="exec_switch_bg()"><td class="$bgclass">$newmembers[datejoined]</td></if>
</tr>
That should do it. Of course you can change the template around etc to get it where you want.
