Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

Sound notification for DVZ Shoutbox 2.1.x

$
0
0
This slight addition allows you to add a sound notification for DVZ Shoutbox when a new message is posted, using its internal hooks system.



1. Open the attached file and upload the dvz_shoutbox.mp3 file to the images/ directory on your server

.zip   dvz_shoutbox.zip (Size: 1.27 KB / Downloads: 3)

2. Open the dvz_shoutbox template (Global Templates) and add the following code after {$javascript}
Code:
<script>
dvz_shoutbox.callbacks['update'].push(function(){
   if ($('#shoutbox .entry.new').length) {
       var audio = new Audio(rootpath + '/images/dvz_shoutbox.mp3');
       audio.volume = 0.2;
       audio.play();
   }
});
</script>

Viewing all articles
Browse latest Browse all 685

Trending Articles