Tag Cloud - Module specific
Design and Skin Customization
Yes for a list have something like this in your index.tpl file
{jrCore_list module="jrAudio" group_by="audio_genre" template="audio_genres.tpl"}
and then the audio_genres.tpl would look something like this
{if isset($_items)}
{jrCore_module_url module="jrAudio" assign="murl"}
<ul>
{foreach from=$_items item="item"}
<li>{$item.audio_genre}</li>
{/foreach}
</ul>
{/if}
updated by @garymoncrieff: 04/15/15 10:33:44AM