MP3 Stream URL
Design and Skin Customization
I am currently working on a skin and it allows me to add songs to the floating music player and I would like to know the how to add the stream url to the player. This is what I have so far but it has not been working:
Code on display page:
{jrCore_list module="jrAudio" order_by=$order_by template="music_home_audio_row.tpl" require_image="audio_image" search="audio_title like `$_post._1`%" limit="7" page=$_post.p}
Code in the row tpl.
{jrCore_module_url module="jrAudio" assign="murl"}
{assign var="ext" value="`$params.field`_extension"}
{if isset($_items)}
{foreach from=$_items item="item"}
{if $item.audio_file_extension == 'mp3'}
{/if}
{/foreach}
{/if}
updated by @makuta: 02/27/15 01:41:06PM