MyBB Community Forums

Full Version: remove pm notification bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i remove the notification bar which appears, when you received a pm or buddy request for example?
I am using my alerts instead.

Screenshot:
http://i.imgur.com/xQTBL4X.png

Regards,
lovelyone
The code for this is in the "global_pm_alert" template.
k, is there no setting to turn it off globally? i remember there was something
You could always just remove these from the header template:
	{$pm_notice}
	{$bannedwarning}
	{$bbclosedwarning}
	{$unreadreports}
	{$pending_joinrequests}
	{$awaitingusers}

Of course you only remove the ones you are wanting removed (you may as well have more or less than the ones I have listed.

If you do not want to remove them you could always just wrap display none around them like so:
<div style="display: none;">ALERT IN HERE</div>
You can go to user cp and unmark receive an alert when someone pm me.

I think there are many tricks to do without some secundary errors id delete some var.

You can set too on pm_alert class on your global.css display none attr or the same as users say before.
Are you looking to fully remove it from your site or just from your account?