in memberlist.php
find:
Code:
if ($userinfo[yahoo]!="") {
eval("\$userinfo[yahooicon] = \"".gettemplate("yahoo")."\";");
} else {
$userinfo[yahoo]=" ";
}
after, add:
Code:
$jointime = (time() - $userinfo[joindate]) / 86400; // Days Joined
if ($jointime < 1) { // User has been a member for less than one day.
$postsperday = "$userinfo[posts]";
} else {
$postsperday = sprintf("%.2f",($userinfo[posts] / $jointime));
}
in memberlist template:
replace:
Code:
<td bgcolor="{ categorybackcolor }" colspan="6">
with:
Code:
<td bgcolor="{ categorybackcolor }" colspan="7">
find:
Code:
<td bgcolor="{ tableheadbgcolor }" align="center"><smallfont color="{ tableheadtextcolor }"><b>Posts</b></smallfont></td>
after, add:
Code:
<td bgcolor="{ tableheadbgcolor }" align="center"><smallfont color="{ tableheadtextcolor }"><b>Posts Per Day</b></smallfont></td>
in memberlistbit template:
find:
Code:
<td bgcolor="{ secondaltcolor }"><normalfont>$userinfo[posts]</normalfont></td>
after, add:
Code:
<td bgcolor="{ firstaltcolor }"><normalfont>$postsperday</normalfont></td>
*note: remove the spaces between { }.