to also get the threads per day (assuming you've installed this hack and tubedog's hack according to this info:
https://vborg.vbsupport.ru/showthrea...068#post198068)
in member.php
FIND
PHP Code:
$jointime = (time() - $userinfo[joindate]) / 86400; // Days Joined
if ($jointime < 1) { // User has been a member for less than one day.
$postsperday = "$userinfo[posts]";
ADD DIRECTLY UNDER THAT
PHP Code:
$threadsperday = "$starts";
FIND
PHP Code:
$postsperday = sprintf("%.2f",($userinfo[posts] / $jointime));
ADD DIRECTLY UNDER THAT
PHP Code:
$threadsperday = sprintf("%.2f",($starts / $jointime));
save and upload
than, in the getinfo template
REPLACE
PHP Code:
$starts ($percentageoftotalthreads% of total threads)
WITH
PHP Code:
$starts ($threadsperday threads per day / $percentageoftotalthreads% of total threads)
and it should work fine
PS: see the screenie to see what I mean