MyBB Community Forums

Full Version: Advanced Stats on Index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i installed the following Advanced Stats on Index plugin non of the advanced
stats are being displaed in the index or the portal please help
here us the link to my site underarchive.com
What template are you using? Did you read the install instructions?
iam using DarkOrange theme and this was instruction given
Quote:Installation :
============================================
1. Upload asoi.php to your forum/inc/plugins directory
2. Upload english/asoi.lang.php to your forum/inc/languages/english directory (YOU MUST DO THIS!!!)
3. Upload any other language file you want to your forum/inc/languages/<language> directory
4. Go to your AdminCP and activate the plugin via the Plugin Manager.
5. Go to your AdminCP and browse to Board Settings >> Change >> Advanced Stats on Index Settings
6. Select the stats you want to show and submit.
7. You're done, thanks for downloading this plugin.
I'm having the same issue on my site.

Brand new board, only a couple members as we're still setting up before going live.

Using the Concealment theme
Have side boxes plugin active.

I have this on my other site with no problems but I do not have the side box plugin there.

Maybe there is a conflict with the side box plugin?

I tried this with the side boxes turned off and on and still not showing either way.

I don't think it's an issue regarding the need to upgrade the plugin because it's workin on the other site that went from mybb version 1.2.11 to this latest version 1.2.12.

It's a pretty easy mod to install so I cant' figure out why it won't work.

the site it's working fine on (theme there is Blue Night Portal vesion) is: www.wandaspetworld.com/bb

The site it's not working on is:
www.thetwitchinkitchen.com/freebies

Anyone with any suggestions?
Read this
It worked for me.
Yep Worked perfectly!

Thank you so much!
Quote:<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
{$forums}
{$boardstats}
<table border="0" class="symbols" cellspacing="1" cellpadding="2" align="center">
<tr>
<td class="thead_bottom" colspan="3" style="white-space:nowrap"></td>
</tr>
<tr>
<td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->new_posts}</span></td>
<td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->no_new_posts}</span></td>
<td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" style="vertical-align: middle;" /> <span class="smalltext">{$lang->forum_locked}</span></td>
</tr>
<tr>
<td class="thead_bottom" colspan="3"></td>
</tr>
</table>
{$footer}
</body>
</html>
i cant find {$forumstats} please help
Go to Templates> modify/delete> (your theme)> Expand> index page templates> (expand>
index_boardstats

Here is the code on MY board. Look at the area in red:
Quote:<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" /></div>
<div><strong>{$lang->boardstats}</strong></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$birthdays}
{$forumstats}<!-- ASOIP_2_0_I -->
</tbody>
</table>
<br />
Hope this helps you some?
Ancraz, that's your index template. You need to look in your index_boardstats template.
thz.iam so stupid and it works perfectly
Pages: 1 2