Hey there,
Personally, i hate scrolling.
I hate the fact that i have ~80 torrents listed in my index, and as soon as i want to view the transfer statistics or whatsoever, i have to scroll all the way down to view it. In a pretty crappy way too IMHO.
I also noted that i dont use the user table next to the links, since i'm the only user on it, and i guess most of you guys are also single users.
Anyway, thats why i created this hack:

The items are individually linked to an item corresponding to the value, i.e clicking on the Total Transfer value will automattically take you to drivespace.php
Here is how to implement it:
Open index.php
Search for:
echo "<b>"._ONLINE.":</b><br>";
for($inx = 0; $inx < count($arOnlineUsers); $inx++)
{
echo "<a href=\"message.php?to_user=".$arOnlineUsers[$inx]."\">";
echo "<img src=\"images/user.gif\" width=17 height=14 title=\"\" border=0 align=\"bottom\">". $arOnlineUsers[$inx];
echo "</a><br>\n";
Add above:
//Good looking statistics hack by FLX
if ($cfg['enable_xfer'] == 1) {
echo "<b>"._TOTALXFER.":</b><br>";
echo '<a href="drivespace.php"><img src="images/hdd.gif" width="16" height="16" border="0" title="" align="absmiddle">'.formatFreeSpace($xfer_total['total']['total']/(1024*1024)).'</a><br>';
}
echo "<b>"._DRIVESPACE.":</b><br>";
echo '<a href="drivespace.php"><img src="images/hdd.gif" width="16" height="16" border="0" title="" align="absmiddle">'.formatFreeSpace($cfg["free_space"]).'</a><br>';
echo "<b>"._TOTALSPEED.":</b><br>";
echo '<a href="xfer.php"><img src="images/download.gif" width="16" height="16" border="0" title="" align="absmiddle">'.number_format($cfg["total_download"]+$cfg["total_upload"], 2).' kB/s</a><br>';
echo "<b>"._DOWNLOADSPEED.":</b><br>";
echo '<a href="xfer.php"><img src="images/download.gif" width="16" height="16" border="0" title="" align="absmiddle">'.number_format($cfg["total_download"], 2).' kB/s</a><br>';
echo "<b>"._UPLOADSPEED.":</b><br>";
echo '<a href="xfer.php"><img src="images/download.gif" width="16" height="16" border="0" title="" align="absmiddle">'.number_format($cfg["total_upload"], 2).' kB/s</a><br>';
echo "<b>"._SERVERLOAD.":</b><br>";
if ($cfg["show_server_load"] && isFile($cfg["loadavg_path"])) {
$loadavg_array = explode(" ", exec("cat ".$cfg["loadavg_path"]));
$loadavg = $loadavg_array[2];
echo '<a href="who.php"><img src="images/who.gif" width="16" height="16" border="0" title="" align="absmiddle">'.$loadavg.'</a><br>';
} else {
echo "n/a";
}
//END
Enjoy this hack

FLX
p.s you can also remove the online and offline user part, like i did later on, since im the only one using TF
Find:
echo "<b>"._ONLINE.":</b><br>";
for($inx = 0; $inx < count($arOnlineUsers); $inx++)
{
echo "<a href=\"message.php?to_user=".$arOnlineUsers[$inx]."\">";
echo "<img src=\"images/user.gif\" width=17 height=14 title=\"\" border=0 align=\"bottom\">". $arOnlineUsers[$inx];
echo "</a><br>\n";
}
// Does the user want to see offline users?
if ($cfg["hide_offline"] == false)
{
echo "<b>"._OFFLINE.":</b></br>";
// Show offline users
for($inx = 0; $inx < count($arOfflineUsers); $inx++)
{
echo "<a href=\"message.php?to_user=".$arOfflineUsers[$inx]."\">";
echo "<img src=\"images/user_offline.gif\" width=17 height=14 title=\"\" border=0 align=\"bottom\">".$arOfflineUsers[$inx];
echo "</a><br>\n";
}
}
Change to:
/* echo "<b>"._ONLINE.":</b><br>";
for($inx = 0; $inx < count($arOnlineUsers); $inx++)
{
echo "<a href=\"message.php?to_user=".$arOnlineUsers[$inx]."\">";
echo "<img src=\"images/user.gif\" width=17 height=14 title=\"\" border=0 align=\"bottom\">". $arOnlineUsers[$inx];
echo "</a><br>\n";
}
// Does the user want to see offline users?
if ($cfg["hide_offline"] == false)
{
echo "<b>"._OFFLINE.":</b></br>";
// Show offline users
for($inx = 0; $inx < count($arOfflineUsers); $inx++)
{
echo "<a href=\"message.php?to_user=".$arOfflineUsers[$inx]."\">";
echo "<img src=\"images/user_offline.gif\" width=17 height=14 title=\"\" border=0 align=\"bottom\">".$arOfflineUsers[$inx];
echo "</a><br>\n";
}
} */