MyBB Community Forums

Full Version: [Solved] Original portal_stats and portal_whosonline code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone!
Could someone please post the original (un-edited) code for both the portal_stats and portal_whosonline template? I screwed some of my templates up, and would like the originals. Thanks!
You need need to get the code from us! myBB has an inbuilt Template Revert system. Click thre button and it revert to the very first revision (the default myBB installs). But just incase it doesn't work for you:

stats:
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead"><strong>$lang->forum_stats</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">
<strong>&raquo; </strong>$lang->num_members $stats[numusers]<br />
<strong>&raquo; </strong>$lang->latest_member <a href="$settings[bburl]/member.php?action=profile&amp;uid=$stats[lastuid]">$stats[lastusername]</a><br />
<strong>&raquo; </strong>$lang->num_threads $stats[numthreads]<br />
<strong>&raquo; </strong>$lang->num_posts $stats[numposts]
<br /><br /><a href="$settings[bburl]/stats.php">$lang->full_stats</a>
</span>
</td>
</tr>
</table>
</td></tr></table>
<br />

whosonline:
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead"><strong>$lang->online</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">
$lang->online_users<br /><strong>&raquo;</strong> $lang->online_counts<br />$onlinemembers
</span>
</td>
</tr>
</table>
</td></tr></table>
<br />
Thanks, I know about the revert feature, that was the part I screwed up! Wink