Log in

View Full Version : Sounds opt in/opt out


Hawk7173
02-27-2009, 02:36 PM
We currently are running a few embedded sounds on our forum. The majority of our membership enjoys it, but there are those that don't and would like them to go away.

Is there a way to have forum sounds so that members can opt in or opt out on and individual basis?

Thanks in advance! Hawk

dismas
02-27-2009, 04:15 PM
You could do this with a conditional based on a profile field. Just add an additional profile field and have them put in a yes or no. And then wrap each instance of the sound playing with a conditional based on that profile field.

Hawk7173
02-27-2009, 06:34 PM
could you give me an example of how that can be written?

I will call it hear sound option with yes or no.

Thanks!

dismas
02-27-2009, 09:02 PM
Something like:



<if condition="$post['field5']==yes">
sound code
</if>



I'm not sure if that's exactly what you need though. You might want to check with someone better than me.