How to show different artist name?
Using Jamroom
{if is_array($media)}
{foreach $media as $a}
{debug}
{if $a._item.$ext == 'mp3'}
{
title: "{$a.title}",
artist: "{$a.audio_alternate_artist}",
mp3: "{$jamroom_url}/{$a.module_url}/stream/{$params.field}/{$a.item_id}/key=Hi9yH4xXiXFK/file.mp3",
{if strstr($formats, 'oga')}
oga: "{$jamroom_url}/{$a.module_url}/stream/{$params.field}/{$a.item_id}/key=Hi9yH4xXiXFK/file.ogg",
{/if}
poster: "{$jamroom_url}/{$a.module_url}/image/audio_image/{$a.item_id}/large"
},
{/if}
add a {degbug} into that loop. You need to check that $a contains 'audio_alternate_artist' do a search in the debug panel that pops up (ctrl+f) for the term 'audio_alternate_artist'. If its there, then you can use it. If it isn't nothing will show up.
updated by @michael: 01/06/15 09:49:55PM
Thank you too for all your help getting the word out and all your suggestions on locations that need improvement.