MyBB Community Forums

Full Version: question about Alan Crisps Board Messages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would like to show board messages only for registered users but not for guests. I couldn't find any settings for this.
Therefore I tried to change the plugin as follows:
function board_messages(){
if($mybb->usergroup['gid'] != "1"){
...
}
}
Unfortunately it doesn't work. If anyone could help me, that would be great!

Thx Wink
Hi,

$mybb isn't availabe there. move your code after this line:

global $mybb;

Call it object-oriented programming. Wink
That's something I always forget...Blush

Thank you!
Guys, about the same shoutbox - how to configure only from moderators above (mods,admin,super mods) to see it? Without registrated user and guests?