Quote:
Originally Posted by powerful_rogue
Does anyone know of a way to remove the "Email" link from the navbar?
Ive got a few members testing it out and dont want everyone to see . . .
|
Rogue, taking out the "Email" will remove the menu access as well. Rather than remove thru comment out (ie:"<!-- -->") in the navbar wrap a condition around it instead like:
<if condition="$bbuserinfo[userid]=10">
. . . do Menu LINK
</if>
I'd like to use the stock notifications that comes with 3.7.0 (runs fine by the way) but not sure where or how to add in but still leaves the problem of where to place the menu access.
Is this the format?
PHP Code:
{
$notifications['dup_repcount'] = array(
'phrase' => $vbphrase['dup_new_reputation'],
'link' => $vbulletin->options['duppath'].'usercp.php?'.$vbulletin->session->vars['sessionurl'],
'order' => 11
);
Rabbit