MyBB Community Forums

Full Version: problem on index page.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have } appearing on very top only on the index page. I dont remember exactly when it happened. I think when I deactivated and reinstalled newsbar pluing it happened. or maybe I am wrong. anyways, I am uploading an image of it and the link to my site is.... www.desibits.com

Also, is it possible to take out the option 'Display posts in classic mode.' for users in the user cp.

[Image: 95629170fe5.png]
In the "index" template, find:
{$headerinclude}}
Remove the last } so it's just {$headerinclude}
In the "usercp_options" template, find:
	<tr>
	<td valign="top" width="1"><input type="checkbox" class="checkbox" name="classicpostbit" id="classicpostbit" value="1" {$classicpostbitcheck} /></td>
	<td><span class="smalltext"><label for="classicpostbit">{$lang->show_classic_postbit}</label></span></td>
	</tr>
Replace with:
<input type="hidden" name="classicpostbit" id="classicpostbit" value="" />

See if that works.
got it!
thanks a lot!