Am adding some field to audio module, for amazon iTunes google play and spotify url
but i would like to check field, in order for me to show them on the page, but i have no idea how to do it with form designer.
I found something code in the forums no long ago but i can't find it anymore.
{if $item.audio_itunes_url == 'on'}
{else}
{/if}
<div>
{if $item.audio_itunes_url == 'on'}
<a href="#">{jrCore_image module="jrAudio" image="ituneslogo.png"}</a>
{else}
Don't show anything.
{/if}
<a href="{$item.audio_amazon_url}">{jrCore_image module="jrAudio" image="amazon-mp3.png"}</a>
<a href="{$item.audio_spotify_url}">{jrCore_image module="jrAudio" image="spotify.png"}</a>
<a href="{$item.audio_google_play_url}">{jrCore_image module="jrAudio" image="google_play.png"}</a>
</div>
updated by @serveion: 04/01/16 04:51:49PM