That title can be found in your skins/jrProJamLight/index.tpl
{* NEWEST VIDEOS *}
<div class="col12 last">
<h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="11" default="Newest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="14" default="Videos"}</h3><br>
The file that controls that section is your skins/jrProJamLight/index_new_videos.tpl
To change it to a SoundCloud list, change the code in that file to this:
{capture name="row_template" assign="new_soundcloud_template"}
{literal}
{jrCore_module_url module="jrSoundCloud" assign="murl"}
{if isset($_items)}
<div class="container">
{foreach $_items as $item}
{if $item@first || ($item@iteration % 3) == 1}
<div class="row">
{/if}
<div class="col4{if $item@last || ($item@iteration % 3) == 0} last{/if}">
<div class="center">
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}"><img src="{$item.soundcloud_artwork_url}" alt="{$item.soundcloud_title_url|jrCore_entity_string}" class="iloutline img_shadow" width=""175" height="175"></a><br>
<h4><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}">{$item.soundcloud_title|truncate:20:"...":false}</a></h4>
</div>
</div>
{if $item@last || ($item@iteration % 3) == 0}
</div>
{/if}
{/foreach}
</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_videos','{$info.page_base_url}/p={$info.prev_page}');$('html, body').animate({ scrollTop: $('
{else}
<span class="button-arrow-previous-off"> </span>
{/if}
{if $info.next_page > 1}
<span class="button-arrow-next" onclick="jrLoad('#newest_videos','{$info.page_base_url}/p={$info.next_page}');$('html, body').animate({ scrollTop: $('
{else}
<span class="button-arrow-next-off"> </span>
{/if}
</div>
{/if}
<div style="float:right; padding-top:9px;">
<a href="{$jamroom_url}/{$murl}" title="More SoundCloud Songs"><div class="button-more"> </div></a>
</div>
<div class="clear"> </div>
{/if}
{/literal}
{/capture}
{jrCore_list module="jrSoundCloud" order_by="_item desc" template=$new_soundcloud_template pagebreak="3" page=$_post.p}
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos