A - Z Artist / Profiles page - Audio Pro
Design and Skin Customization
The MediaPro skin has the feature your after in it, you can use it for a guide:
http://demo.jamroom.net/jrMediaPro/music
So look in the /skins/jrMediaPro/music.tpl template.
{jrCore_include template="header.tpl"}
{jrCore_include template="footer.tpl"}
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile"}
{jrCore_include template="footer.tpl"}
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile" search1="profile_name like a%"}
{jrCore_include template="footer.tpl"}
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile" search1="profile_name like `$_post['letter']`%"}
{jrCore_include template="footer.tpl"}
{jrCore_include template="header.tpl"}
<a href="{$jamroom_url}/archives/letter=a">a</a>
<a href="{$jamroom_url}/archives/letter=b">b</a>
<a href="{$jamroom_url}/archives/letter=c">c</a>
<a href="{$jamroom_url}/archives/letter=d">d</a>
<a href="{$jamroom_url}/archives/letter=e">e</a>
.....
{jrCore_list module="jrProfile" search1="profile_name like `$_post['letter']`%"}
{jrCore_include template="footer.tpl"}
{jrCore_list ...... search1="audio_title like %`$_post['letter']`" ........}
<span>{jrCore_icon icon="calendar" size="16" color="ff5500"} {jrCore_lang skin="jrAudioPro" id=97 default="Genre: "} {$profile_genre} </span>
<span>{jrCore_icon icon="calendar" size="16" color="ff5500"} Genre: {$profile_genre} </span>
{if $_profile.quota_id == 3}
show whatever you want to quota id 3 here.
{/if}
{if strlen($profile_genre) > 0}
this will show if the string length of the $profile_genre field is longer than zero characters
{/if}