MyBB Community Forums

Full Version: Add extra table in bottom to show Moderator list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to add "Moderatr list" like who is online table...and list moderators

so user can contact the moderators easily Smile

[Image: be826397aa.png]

we need to add moderator list from showteam.php ......??
It needs a plugin.
so it is not possible to add table in bottom using small change in theme code......?
It needs a sql query to fetch moderators from the database and then show in templates. You can't run sql queries in templates.
ok mate..

then how can i add static, that is Table in bottom, and i will update the moderator list Smile

i add the moderators list manually using html


BUT how to create/add table in bottom like the same as who is online
AdminCP > Templates > Your theme's templates > Index Templates > index_boardstats > find the following;
{$birthdays}
and ADD the following code just AFTER that line;
<tr>
<td class="tcat"><span class="smalltext"><strong>Moderator List</strong></span></td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">Moderators</span></td>
</tr>
Thanks yaldaram Smile got it