MyBB Community Forums

Full Version: View Groups not showing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The View Groups plugin by Pirata Nervo is not working when I activate it. It does not show up on my website, which is theauthoringbay.com.

The plugin: http://mods.mybb.com/view/view-groups

My index_ boardstats template:

<div class="bstat" >
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="0" class="tborder">
<thead>
<tr>
<td class="cell">
<div class="rmain"></div>
<div><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$online_today}
{$forumstats}
</tbody>
</table>
</div>
Add the following after {$whosonline}:

{$viewgroups}

The reason it isn't working is because the plugin looks for {$birthdays} in that template on activation, which isn't present.
Panda stole the words right out of my mouth Toungue

Ninja'd
Ah, I see.

http://puu.sh/1pCCR

Shows up now. But how can I make the title "User Groups" title go on a orange bar, like the other board stats?
(2012-11-13, 02:18 AM)TheAuthoringBay Wrote: [ -> ]Ah, I see.

http://puu.sh/1pCCR

Shows up now. But how can I make the title "User Groups" title go on a orange bar, like the other board stats?

Refer back to the other support thread...showed you how to do that.
http://puu.sh/1pCYk

That's what it looks like now. I need the bar to be a bit thicker, and to have 1 title, instead of 2. Also, the 3 orange blocks need to be there. Any idea on how to do this?

Template now:

<div class="bstat" >
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="0" class="tborder">
<thead>
<tr>
<td class="cell">
<div class="rmain"></div>
<div><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$online_today}
<td class="thead" colspan="2">
<div>User Groups</div> 
</tr>
    <td class="trow1" colspan="2" valign="top" align="middle"><span class="smalltext">

{$viewgroups}

</span></td>
</tr> 
{$forumstats}
</tbody>
</table>
</div>