Sound notifications Alerts and Conversations

XenForo Sound notifications Alerts and Conversations 01

Register & Get access to index
Compatible XF Versions
2.2
Visible Branding
No
In your PAGE_CONTAINER template look for:
HTML:
<body data-template="{$template}">
And add below:
HTML:
<xf:if is="{$xf.visitor.conversations_unread}">
    <audio src="http://s1download-universal-soundbank.com/mp3/sounds/9756.mp3" autoplay></audio>
</xf:if>
<xf:if is="{$xf.visitor.alerts_unread}">
    <audio src="http://s1download-universal-soundbank.com/mp3/sounds/newemail.mp3" autoplay></audio>
</xf:if>
If you want only 1 sound for both put this code instead:
HTML:
<xf:if is="{$xf.visitor.conversations_unread} OR {$xf.visitor.alerts_unread}">
    <audio src="http://s1download-universal-soundbank.com/mp3/sounds/9756.mp3" autoplay></audio>
</xf:if>
PS: You can change the sound links at your convenience.
You can also add an .mp3 link like on the chatBox.
Author
AynaZ
Views
First release
Last update
Rating
5.00 star(s) 1 ratings

More resources from AynaZ

Latest reviews

Excellent Aynaz !
Back
Top Bottom