2015-10-02, 01:09 PM
Hi, I would like add in a dropdown the title of private message received, like this (it's only an example edited, don't look to numbers etc
):
![[Image: gZL0q0H.png]](https://camo.mybb.com/51d101547dcae7b2068a6fcda78c8276ad5ab27a/687474703a2f2f692e696d6775722e636f6d2f675a4c307130482e706e67)
I tried to add in header_welcomeblock_member this:
or
But nothing, I think I need edit in core something but I don't know what. Is there some tutorial for this? Because I saw this edit in a MyBB forum, so it's possible make it.
Thank you in advance

I tried to add in header_welcomeblock_member this:
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
Private Messages
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>{$pm_notice}</li>
</ul>
</li>
or
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" title="I tuoi messaggi privati">
Private Messages
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>{$privatemessage_text}</li>
</ul>
</li>
But nothing, I think I need edit in core something but I don't know what. Is there some tutorial for this? Because I saw this edit in a MyBB forum, so it's possible make it.
Thank you in advance