MyBB Community Forums

Full Version: Remove Flipping Messages (1.0 )
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello sometimes ago i installed flip message but now i want to remove it i deactivate the plugin but this is also appearing now.
Please tell me which code i have to remove from header template to remove that plugins
<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
var CurrentMsg = '{$mybb->settings['fmstatus']}';
function update(msg) {
var pad_str="";                           
n = msg.length;
if(n<72) {
pad = (73-n)/2;
for(var i=0; i<pad; i++) {
pad_str+=" ";                        
   }                        
}                          
CurrentMsg = pad_str + msg;                           
document.getElementById("field").value = CurrentMsg;
clearTimeout(timer);                           
timer = setTimeout("idleMsg()",2500);        
}
function MakeArray(n) {                           
this.length=n;                           
for(var i = 1; i<= n; i++) {                                   
this[i] = "";                
}                           
return(this);        
}               
var index = 1;           
var notice_num = 9;                   
var notices = new MakeArray(notice_num);        
notices[1] = "{$mybb->settings['fm1']}";
notices[2] = "{$mybb->settings['fm2']}";
notices[3] = "{$mybb->settings['fm3']}";        
notices[4] = "{$mybb->settings['fm4']}";
notices[5] = "{$mybb->settings['fm5']}";
notices[6] = "{$mybb->settings['fm6']}"; 
notices[7] = "{$mybb->settings['fm7']}";       
notices[8] = "{$mybb->settings['fm8']}";                     
var timer = setTimeout('idleMsg()',1500);                   
function nochange() {
document.getElementById("field").value = CurrentMsg;
}                   
function idleMsg() {                           
update(notices[index++]);                           
if(index>notice_num) { 
index=1; 
   }  
}
// End -->                  
</SCRIPT><fieldset><legend>{$mybb->settings['fmtitle']}</legend><CENTER>
<FORM name="messages" onSubmit="return false">
<input type="text" id="field" name="field" size=73 value="{$mybb->settings['fmstatus']}" onFocus="self.status='{$mybb->settings['fmstatus']}'; return true" onChange="nochange()">

</FORM>
</CENTER></fieldset><!-- NotifyReplies -->
			{$newreplies}<!-- /NotifyReplies -->
			{$pending_joinrequests}
			{$sitenoticecolors}{$sitenoticecolors2}{$sitenoticecolors3}{$sitenoticecolors4}{$sitenoticecolors5}<navigation><!--OUGC_ANNBARS-->
			<br />

Please help me
you can remove the code lines between {$unreadreports} and <!-- NotifyReplies --> (excluding both)
after remove that codes shoutbox and site message plugins not working

dump!!!