MyBB Community Forums

Full Version: Board Messages plugin not working.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I find it hard to believe that a plugin with thousands upon thousands of downloads doesn't work, but for me, it isn't.

In the Install file, it states that the permissions to use the plugin have to be added to your account via the "Admin Permissions" function in the ACP. Yet, when I click this, I see no permission related to such a plugin at all. The plugin was successfully installed with no problems, yet, because of me not seeing the permission at all, I can't actually use the plugin.

What's happening?

(Forum Version: 1.6.5)
Are you using this plugin: http://mods.mybb.com/view/board-messages ?

If yes then open plugin file and find;
$sub_menu[] = array('id' => 'board_messages', 'title' => $lang->board_messages, 'link' => 'index.php?module=config/board_messages');
and add the following code just after that line;
return $sub_menu;

Next, find;
$actions['board_messages'] = array('active' => 'board_messages', 'file' => 'board_messages');
and add the following code just after that line;
return $actions;
Thank you! I was having the same issue, and your fixed worked.