Quote:
Originally Posted by southernlady
I discovered I have a problem with this for the ones who aren't suppose to see it. It works great for those of us who can see it, but those who can't see a shout box with this in it:
Now, I realize there is no official support of this mod, but I am hoping someone in this thread can help me out. I am a designer not a coder, LOL. Liz
|
Do this:
In
vbshout.php, find:
Code:
if ($vbulletin->options['shout_messages_order'])
{
$Output = array_reverse($Output);
}
Below that, add
Code:
if (isBanned($vbulletin->userinfo) && $vbulletin->options['shout_banned_perms'] > 0)
{
echo '<b>Sorry, you are currently banned from the shoutbox</b>';
exit(); }
(Of course you can change the text to whatever suits you best.)
Worked for me.