Can't seem to find out how to do this. How would I get the correct referral count to show up? It says the total number of users registered on the site, and I can't get it to show how many referrals the person viewing has. Basically, I want it to have the same effect as $bbuserinfo so that whoever is looking at it, it'll tell you how many referrals you have.
I have this as a plugin for it, but it's only giving me the total number of users on the site. What could I do to make it show for the person viewing how many they have?
Code:
// REFERRALS
if ($vbulletin->options['usereferrer'])
{
$refcount = $db->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '$vbulletin->userinfo[userid]'");
$referrals = vb_number_format($refcount['count']);
}
Plugins / products only if possible. Please help. >_<;