Quote:
Originally Posted by SlipNslide281
shoutbox installed fine and working but It didn't install the shoutbox, shout manager in my admincp. how can I install the manager? Anyone that visits my site and shout, edit, and delete shouts.
|
In admincp, find :-
PHP Code:
construct_nav_group($vbphrase['subscriptions'], '<hr />');
}
Underneath add :-
PHP Code:
if (can_administer('canadminshouts'))
{
$printhr = true;
construct_nav_option($vbphrase['shout_manager'], 'shout.php?do=modify');
construct_nav_option($vbpharse['find_shouts'], 'shout.php?do=find');
construct_nav_group($vbphrase['shoutbox'], '<hr />');
}