well maybe someone can help me. I'm using version 2.2.7.
Whats happening is it's showing the % of post, but not the PPD (post per day). I'm using the original of this hack. All i want is the PPD to show up again. how would i go about fixing this?
Thanks.
http://nemesis.thecoldshop.com/membe...tinfo&userid=1
a snipet of my getinfo template
Code:
<tr>
<td bgcolor="#1C5780"><normalfont><b>Total Posts:</b></normalfont></td>
<td bgcolor="#1C5780"><normalfont>$userinfo[posts] ($postsperday posts per day / $percentoftotalposts% of total posts)</normalfont></td>
</tr>
and what I did to member.php
PHP Code:
// grab the total number of posts to compare to this users
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=$countposts['posts'];
$percentoftotalposts = round(($userinfo[posts] / $totalposts) * 100,2);
Thanks for the help.