MyBB Community Forums

Full Version: DVZ Shoutbox 2.3.4 – Sound notification.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
DVZ SHOUTBOX 2.3.4 – SOUND NOTIFICATION

Download sound notification:
[attachment=42036]

Upload the dvz_shoutbox.mp3 file to the \images

Go to ACP >>> Templates & Style >>> Templates >>> Global Templates >>> dvz_shoutbox
Add the following code before {$javascript}

<script>
dvz_shoutbox.callbacks['update'].push(function(){
    if ($('#shoutbox .entry.new').length) {
        var audio = new Audio(rootpath + '/images/dvz_shoutbox.mp3');
        audio.volume = 0.5;
        audio.play();
    }
});
</script>

Tested on:
  • DVZ Shoutbox 2.3.4
  • MyBB 1.8.30
This is actually very interesting, will give it a try Smile
what is the difference between author thread mention below and this tutorial ?

https://community.mybb.com/thread-166192...pid1135286
(2019-07-28, 10:00 AM)mujeebdgk Wrote: [ -> ]what is the difference between author thread mention below and this tutorial ?

https://community.mybb.com/thread-166192...pid1135286

The difference is that the code just needs to be inserted before the variable, not after variable.
That's why I added a new tutorial.
it works man.. thank you!
Tested on:
  • DVZ Shoutbox 2.3.3
  • MyBB 1.8.22