MyBB Community Forums

Full Version: New PM alert
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to change the color of the pm message link on the header_welcomeblock_member when a new message arrives?
With Template Conditionals change {$lang->welcome_pms_usage} to:
<if $mybb->user['pms_unread'] then><span style="color: red;">{$lang->welcome_pms_usage}</span><else>{$lang->welcome_pms_usage}</if>
Which template do I change that to. {$lang->welcome_pms_usage} is not in my menu header. My header menu consists of:

<a href="{$mybb->settings['bburl']}/private.php">Messages</a><a href="{$mybb->settings['bburl']}/private.php" id="pm_notification" title="Private Messages">{$mybb->user['pms_unread']}</a>
Well, wrap the mentioned customised line in the same conditional then.
Never mind. I added the the field to see what the output is. I get it, thanks!!