Your going to have to modify two templates and create another.
First, create a new template named index_new_music.tpl and put this code in it.
{capture name="row_template" assign="new_music_template"}
{literal}
{jrCore_module_url module="jrAudio" assign="murl"}
{if isset($_items)}
<div class="container">
<div class="row">
{foreach from=$_items item="row"}
<div class="col4{if $row@last} last{/if}">
<div class="center">
<a href="{$jamroom_url}/{$row.profile_url}/{$murl}/{$row._item_id}/{$row.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$row._item_id size="medium" crop="auto" width="175" height="175" alt=$row.audio_title title=$row.audio_title class="iloutline img_shadow"}</a><br>
<h4><a href="{$jamroom_url}/{$row.profile_url}" title="{$row.profile_name}">{if strlen($row.audio_title) > 20}{$row.audio_title|truncate:20:"...":false}{else}{$row.audio_title}{/if}</a></h4>
</div>
</div>
{/foreach}
</div>
</div>
{if $info.total_pages > 1}
<div style="float:left; padding-top:12px;">
{if $info.prev_page > 0}
<span class="button-arrow-previous" onclick="jrLoad('#newest_music','{$info.page_base_url}/p={$info.prev_page}');"> </span>
{else}
<span class="button-arrow-previous-off"> </span>
{/if}
{if $info.next_page > 1}
<span class="button-arrow-next" onclick="jrLoad('#newest_music','{$info.page_base_url}/p={$info.next_page}');"> </span>
{else}
<span class="button-arrow-next-off"> </span>
{/if}
</div>
{/if}
<div style="float:right; padding-top:9px;">
<a href="{$jamroom_url}/music" title="More Music"><div class="button-more"> </div></a>
</div>
<div class="clear"> </div>
{/if}
{/literal}
{/capture}
{if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
{jrCore_list module="jrAudio" order_by="_created desc" template=$new_music_template require_image="audio_image" pagebreak="3" page=$_post.p}
{else}
{jrCore_list module="jrAudio" order_by="_created desc" template=$new_music_template pagebreak="3" page=$_post.p}
{/if}
Then in your skins/jrProJamLight/index.tpl file, find this:
and above that add this:
{* NEWEST AUDIO *}
<div class="col12 last">
<h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="11" default="Newest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="56" default="Music"}</h3><br>
<br>
<div class="newest_body_3 mb30 pt20">
<div id="newest_music">
</div>
</div>
</div>
then open your skins/jrProJamLight/js/jrProJamLight.js file and find this:
jrLoad('#newest_videos',core_system_url + '/index_new_videos');
right above it add this:
jrLoad('#newest_music',core_system_url + '/index_new_music');
That should show a row of Newest Music right above the Newest Videos section on the home page.
Be sure to clear your cache via the Core Tools.
Hope this helps,
Douglas
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos