pm notification

i'm not sure if this template modification already was here...
its very simple, this is a image that will show up when you have a unread pm.

on your template, search for the navbar and at the end add this code

Code:
<!-- PM Notification -->
<if condition="$bbuserinfo[pmunread]">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" align="center">
<tr>
            <td class="thead"><a href="private.php"><div style="text-decoration:none;">You got $bbuserinfo[pmunread] Private Messages<if condition="$bbuserinfo[pmunread] >= 2">s</if>! Click here to read them!</div></a></td>
        </tr>
</table>
<br />
</if>
<!-- / PM Notification -->
 
Top