How to eliminate Latest Music box from my Profile page
Using Jamroom
Yeah, thats easy to forget. Well done. Any subsequent edits to that template wont need that step because the template will already be active.
{* Latest Music and Latest Videos Row *}
{if $profile_jrAudio_item_count > 0 || $profile_jrVideo_item_count > 0}
<div class="row">
<div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
<div class="block">
{jrCore_include template="profile_index_music.tpl"}
</div>
</div>
<div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
<div class="block">
{jrCore_include template="profile_index_video.tpl"}
</div>
</div>
</div>
{/if}
{* Videos Row *}
{if $profile_jrVideo_item_count > 0}
<div class="row">
<div class="col12 last">
<div class="block">
{jrCore_include template="profile_index_video.tpl"}
</div>
</div>
</div>
{/if}