I updated JustDave's documentation a bit (per his request) as he hates to document... and we'd all rather have him creating cool stuff rather than documenting.

I've updated the ZIP file as well. To the bottom of his instructions, I have added instructions to add this to the ubbt_registerednav.tmpl file.
To do that, insert the Who's Online code into ubbt.inc.php just above:
// -------------------------------------------
// Now require the registerednav.php template
$html = new html;
list($tbopen,$tbclose) = $this -> table_wrapper();
if (!$debug) {
include("$thispath/templates/$tempstyle/ubbt_registerednav.tmpl");
}
}
And change the first line of the Whos Online code from:
$LastOn = $html -> get_date() - 600;
To this:
$LastOn = $this -> get_date() - 600;
Then insert the Template code into the ubbt_registerednav.tmpl file.
Then it will appear at the top of the page for registered users. If you wish to do it for unregistered users you'll need to place the modified Who's Online code above the require statement for ubbt_unregisterednav.tmpl and edit the ubbt_unregisterednav.tmpl file as well.

Thanks Dave!
