Righto, I put an echo in the plugin to print out the new stat. Using member_build_blocks_start, I see the stat at the top of the page but not in the Statistics tab like it should be.
So, I assume the plugin is being executed but the code I have in the template is not working then?
Here's the code quickly....
Plugin
PHP Code:
$stats= $db->query_read("
SELECT round(sum(replycount)/count(*),2) AS average, round(sum(views)/count(*),2) AS strikerate
FROM `thread`
WHERE `forumid` != 384
AND `forumid` != 20
AND `forumid` != 375
AND `postuserid` = $userinfo[userid]
");
$stat = $db->fetch_array($stats);
$thread_average = $stat['average'];
$thread_strikerate = $stat['strikerate'];
echo $thread_average;
Template
PHP Code:
<li><span class="shade">$vbphrase[total_posts]:</span> $prepared[posts]</li>
<li><span class="shade">$vbphrase[posts_per_day]:</span> $prepared[postsperday]</li>
<li><span class="shade">Thread Average (replies):</span> $thread_average</li>
<li><span class="shade">Thread Strike Rate (views):</span> $thread_strikerate</li>
Am I missing something?