I found out how to remove / hide the link which reads "Private Massages" in the
Navbar. Its not really needed with this mod.
In
Navbar look for:
Code:
<vb:if condition="$show['pmmainlink']">
<li><a href="private.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase private_messages}</a></li>
</vb:if>
You can wrap it with
Code:
<vb:comment> </vb:comment>
And the end result will look like
Code:
<vb:comment><vb:if condition="$show['pmmainlink']">
<li><a href="private.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase private_messages}</a></li>
</vb:if></vb:comment>
( Alternatively, you could remove it rather then wrap it )