MyBB Community Forums

Full Version: Get rid of this box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I can't seem to get rid of this box that says Welcome to general discussion!
Its not a plugin causing this text to appear so I'm assuming its in a template but i'm not sure which one :L it appears in every theme I install and I need to delete it.
[Image: 8884f4fdd89d720a53f4ea952ef91bc4.png]
Actually. That is a global message plugin.
You can take out the plugins code in your index page templates or header templates.
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$ps_header_index}
<div id="sidebar">
<div class="sb_thead">Sidebar</div>
<div class="sb_trow">
<!-- Sidebar -->
<div class="sb_button orange">First usergroup is being sold for $50.</div><br>
<div class="sb_button blue">Contact OG for any site related issues/help with upgrading.</div>
</div>
<br>
<div class="sb_thead">Site Announcements</div>
<div class="sb_trow">
<div class="sb_button red">We have purchased a new theme let us know if you like it or not!</div><br>
</div>
</div>
<div id="index">
{$forums}
{$ps_footer_index}
</div>
{$boardstats}
<br style="clear: both" />
{$footer}
</body>
</html>

This is the index page code
it should be in the header template - something like below (after <div id="content">)
<div style="padding: 1em; margin-bottom: 1em;padding: 1em;border: 1px solid #cc3344;color: #000;background-color: #ffe4e9;margin-bottom: 1em;"><p style="padding: 0;margin: 0;float: left;width: 1em;font-size: 1.5em;color:red;">!!</p><h3 style="padding: 0;margin: 0;">Welcome to {$mybb->settings['bbname']}!</h3><p style="margin: 1em 0 0 0;"></p></div>