Quote:
Originally Posted by 350Chevy
Adding the option not to play a sound when entering the private messages would require much more hacking and not really worth it.
|
You could use a conditional in the navbar template like this:
Code:
<if condition="THIS_SCRIPT!='private'">
$sound
</if>
If ya also want to stop the sound when viewing the usercp use this:
Code:
<if condition="THIS_SCRIPT!='private' and THIS_SCRIPT!='usercp'">
$sound
</if>
Gotta love template conditionals.