Well - I'll point you in the right direction....
In members.inc.php, you will find:
Code:
// members statistics
$total_c = strlen( $_POST[total_c] ) ? (int)$_POST[total_c] : GetParam( "default_country" );
$total_arr = db_arr( "SELECT COUNT(ID) FROM `Profiles` WHERE Status = 'Active'" );
$total_arr_week = db_arr( "SELECT COUNT(ID) FROM `Profiles` WHERE Status = 'Active' AND (TO_DAYS(NOW()) - TO_DAYS(LastReg)) <= 7" );
$total_arr_gold = db_arr( "SELECT COUNT(ID) FROM `Profiles` WHERE Status = 'Active' AND ExtraAddons IS NOT NULL AND ExtraAddons != ''" );
$total_c_arr = db_arr( "SELECT COUNT(ID) FROM `Profiles` WHERE Status = 'Active' AND Country = $total_c" );
$total_members = $total_arr[0];
$total_c_members = $total_c_arr[0];
And if you take out the "Status = 'Active' AND" you may get what you want.
Smoge
Bookmarks