Hello, @websupporter. Thanks for making this theme. It is working well.
However, I, too, would like to disable the sound for the desktop notification.
I tried adding the following code to my theme’s functions.php:
add_filter( 'dn_mp3_url', 'change_notification_sound' );
change_notification_sound( $mp3_url ) {
return '';
}
and
add_filter( 'dn_mp3_url', 'change_notification_sound' );
change_notification_sound( $mp3_url ) {
return NULL;
}
However, both of those completely broke the site. I had to go in my FTP and delete that from the file.
What might I be doing wrong, and what would you recommend I do to disable the sound for my desktop notifications?