MyBB Community Forums

Full Version: MyShoutBox doens't work on MyBB 1.8.0?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
In case someone wants to use the MyShoutbox plugin for MyBB 1.8; I have rewritten some parts of the javascript code so it supports jQuery instead of prototype (which has been removed in version 1.8).

In total, two files need to be modified.

1. Open inc/plugins/myshoutbox.php
2. Look for linesĀ 379 and 494:
Event.observe(window, \'load\', ShoutBox.showShouts);

And replace those lines with
$( window ).load(function() {
	ShoutBox.showShouts();
);

3. Make sure to disable and reenable the MyShoutbox plugin (or modify the code before installing)
4. Replace jscripts/myshoutbox.js with the file attached below.
5. Enjoy!

THIS MODIFICATION WORKS ONLY FOR MYBB 1.8. DO NOT ATTEMPT TO USE THIS FOR MYBB 1.6 AS IT WILL BREAK THE SHOUTBOX.

In case you have any questions regarding this modification, feel free to ask. I try to answer them accordingly. I usually don't provide support for these matters, but since the original developer dropped active support I'm glad if I could help anyone out as I've been using this shoutbox for many years and it's a shame to let such a plugin get to waste.
Pages: 1 2 3