MyBB Community Forums

Full Version: function/code for unread messages?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to add a little box on my inbox button and display the amount of "unread" messages you have. It's like a notification box.

I want to place it inside the white square: (Not keeping the white square)
http://gyazo.com/893a5fa58ae907860d5fd124b0456a14

is this the code?
<a href="{$mybb->settings['bburl']}/private.php">{$mybb->user['pms_unread']}</a>
The following is the link:

<a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a>

The following shows the amount of PMs they have including unread PMs.

{$lang->welcome_pms_usage}
So I use this? {$mybb->user['pms_unread']}
The above reply will display the PMs like this

[Image: 3KNRT.png]

If you use

{$mybb->user['pms_unread']}

Then it'll display the PMs like this

[Image: 3KNWM.png]

Just the number of unread PMs basically.