MyBB Community Forums

Full Version: Few Codes for Custom Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need a few codes to add to my custom page.

I'll need my page to show the memberlist, but different. The only difference I want is:
I want it to show the persons average posts (Which shows on every members profile)

Their total posts and threads.

and how many thanks the user has.

Here is the code to my custom page:

<html>
<head>
<title>{$mybb->settings[bbname]} - Member Statistics</title>
{$headerinclude}
</head>
<body>
{$header}
<br />
<br />
<!-- Content: Start -->



<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>Example Page</strong></td></tr>
<tr><td class="trow1">
<if $mybb->user['uid'] then>
<span class="smalltext">
Example Page Content
</span>
<else />
<span class="smalltext">
<strong><a href="member.php?action=login">Login</a> or <a href="member.php?action=register">Register</a></strong>
</span>
</if>
</td></tr>
</table><br>


<!-- Content: End -->
{$footer}
</body>
</html>