What an incredibly helpful answer, thanks you! So I have the following working code, that gives me the total number of members:
Code:
<?php
$specialtemplates = array('userstats');
require_once('./global.php');
$numbermembers = vb_number_format($vbulletin->userstats['numbermembers']);
echo $numbermembers;
?>
However, I also want to add in the total number of posts and threads, so I tried the below:
Code:
<?php
$specialtemplates = array('userstats');
$specialtemplates = array('forumcache');
require_once('./global.php');
$numbermembers = vb_number_format($vbulletin->userstats['numbermembers']);
echo $numbermembers;
$totalthreads = 0;
$totalposts = 0;
if (is_array($vbulletin->forumcache)){
foreach ($vbulletin->forumcache AS $forum)
{
$totalthreads += $forum['threadcount'];
$totalposts += $forum['replycount'];
}
}
$totalthreads = vb_number_format($totalthreads);
$totalposts = vb_number_format($totalposts);
echo $totalthreads;
echo $totalposts;
?>
This doesn't work, and gives me '0' for each of the echos. I'm guessing the issue is that I'm not calling in the specialtemplates correctly now that there's more than one - how should these be formatted?
Thanks