MyBB Community Forums

Full Version: I need to ad a pm banner!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Currently I don't have a banner on my forum when a pm comes in how can I fix that? If you need a test account just say so. But I want to make it a nice banner that says the username and what not when the users recieve a pm what template do i change this in and what would i do? Thanks Big Grin site url
www.mixymedia.bz
Isn't it suppose to show up a alert bar? Try the default theme and see if it works. If not than you have screwed up your MyBB Toungue.
Yea it is, it usually shows up though. For my last theme it did.
So just copy the same templates?
Just make sure {$pm_notice} is in your header template.
<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
                        <table width="100%" cellspacing="0">
                        <tr>
                        <td width="30%">
                        <div class="logo"><a
href="{$mybb->settings['bburl']}/index.php"><img
src="{$theme['logo']}" alt="{$mybb->settings['bbname']}"
title="{$mybb->settings['bbname']}" /></a></div>
                        </td>
                        <td width="60%" valign="center" align="right">
                        <span class="panel">
                        <strong>Welcome {$mybb->user['username']},</strong> <a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}. 
</span>
<span class="panel" style="margin-left: 3px;">
<a href="#" id="quicklinks">Quick Links <img src="{$theme['imgdir']}/arrow.png" title="Dropdown Menu" vertical-align="middle" /></a> 
<div id="quicklinks_popup" class="popup_menu" style="display: none;"> 
<div class="popup_item_container">
<div class="quicklink">
<a href="{$mybb->settings['bburl']}/usercp.php?action=profile" class="popup_item">Edit User Profile</a>
</div>
</div>
<div class="popup_item_container">
<div class="quicklink">
<a href="{$mybb->settings['bburl']}/usercp.php?action=options" class="popup_item">Edit User Options</a>
</div>
</div>
<div class="popup_item_container">
<div class="quicklink">
<a href="{$mybb->settings['bburl']}/search.php?action=getdaily" class="popup_item">View Today's Posts</a>
</div>
</div>
<div class="popup_item_container">
<div class="quicklink">
<a href="{$mybb->settings['bburl']}/search.php?action=getnew" class="popup_item">View New Posts</a>
</div>
</div>
</div>
<script language="javascript" type="text/javascript">
new PopupMenu("quicklinks");
</script>                
</span>
                        </td>
                        </tr>
                        </table>
			<div class="menu">
				<ul>
                                        <li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/index.php">Forum</a></li>
                                        <li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/memberlist.php">Members</a></li>
					<li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/search.php">Search</a></li>
					<li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/usercp.php">User Cp</a></li>
					<li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/myawards.php">Awards</a></li>
                                        <li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/donate.php">Donate</a></li>
                               {$modcplink}{$admincplink}
                                        <li>&nbsp&nbsp<a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">Log Out</a></li>
				</ul>
			</div>
                        <div class="info">
                        <div class="info_right">
                                              </div>
                        <div class="info_left">
                        <span class="info_title">Mixy Media</span> <br />
                        <span class="info_text">Get ready to be amazed by the new changes going to take place.</span>
                        </div>
                        </div>
			<hr class="hidden" />
                        <br class="clear" />
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			<navigation>
			<br />
Its there but its still not working. My header just had {welcomeblock} it in thats it so this above is the welcome block.
Make sure it's actually turned on in your User CP Options.
Yea its on for me, any other ideas why it would not be working?
Make sure there is contents in your global_pm_alert template.
Where is that? I have never heard of that template.
Pages: 1 2