MyBB Community Forums

Full Version: Over view Plugin Not Showing at all
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Over view Plugin , when installed, Not Showing at all on index, Please Help
Open your index template and look for {$overview}
If it isn't there, add it where you want it displayed.
This should have been posted in the Mod support forum.
Thankyou, i edited but not worked, i edited index template
Please help , waiting your comments
Is it showing on the default theme?
No, it is also not showing in default theme
Are you sure you activated it....??
Have you tried uninstalling, then re-installing? It should install correctly if the files were all uploaded correctly.
@ matt, yes activeted it,
@Gordie, yes uploaded overview.php in inc/plugins folder and its language file in
.inc/languages/english folder
Can you post a copy of your index template? I've been using this plugin on countless themes without a problem. There must be something interfering with it.

Also, check your index template to ensure {$overview_headerinclude} is placed directly below {$headerinclude}
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
{$overview_headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body{$overview_body_onload}>
{$header}{$importantmsgs}
{$aamessage}
{$forums}
{$boardstats}

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$easyaff} {$footer}
{$overview_body}
</body>
</html>
Pages: 1 2