I think who's online addon is not involved in this information's displaying at all.
What you need to do is just to generate 2 new variables in bb_plugins.php which use 2 additional mySQL requests (which will load up your database without a lot of sense).
Kind of:
/* 1st page stats */
if($action==''){
if($numUsersDb=db_simpleSelect(0,$Tu,'count(*)')) $numUsers=$numUsersDb[0]-1; else $numUsers='N/A';
if($row=db_simpleSelect(0,$Tu,"{$dbUserId}, {$dbUserSheme['username'][1]}", '', '', '', "{$dbUserId} DESC", 1)) {
$lastUserDbLnk="Welcome, newest member <a href=\"https://www.minibb.com/forums/{$indexphp}action=userinfo&user={$row[0]}\">{$row[1]}</a>";
} else {
$lastUserDbLnk='';
}
}
/* --1st page stats */
Then put
{$numUsers} and
{$lastUserDbLnk} in templates/main_footer.html wherever you would like...