Changing "Newest Audio" to "newest SounCloud Tracks" in jrElastic Theme
Using Jamroom
Yes, I see what you mean
I have pasted it right before the
But it messes up my site a lot..?
Here is the end of "column 3" and the start of "column 6"
{* Newest Audio Block *}
{if jrCore_module_is_active('jrAudio')}
<div class="block">
<div class="title">
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="11" default="newest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="13" default="audio"}</h2>
{jrCore_module_url module="jrAudio" assign="audio_murl"}
<div class="title-more"><a href="{$jamroom_url}/{$audio_murl}">{jrCore_lang skin=$_conf.jrCore_active_skin id="22" default="all"}</a></div>
</div>
<div class="block_content">
<div class="item">
{jrCore_list module="jrAudio" order_by="_created desc" template="index_list_audio.tpl" limit="5" require_image="audio_image"}
</div>
</div>
</div>
{/if}
</div>
<div class="col6">
Is it possible for you to tell me where to insert the SoundCloud Block?
My SoundCloud block looks like this:
{* Newest SoundCloud tracks*}
{if jrCore_module_is_active('jrSoundCloud')}
<div class="block">
<div class="title">
<h2>SoundCloud tracks</h2>
{jrCore_module_url module="jrSoundCloud" assign="SoundCloud_murl"}
<div class="title-more"><a href="{$jamroom_url}/{$SoundCloud_murl}">{jrCore_lang skin=$_conf.jrCore_active_skin id="22" default="all"}</a></div>
</div>
<div class="block_content">
<div class="item">
{jrCore_list module="jrSoundCloud" order_by="_created desc" template="index_list_soundclouds.tpl" limit="5"}
</div>
</div>
</div>
{/if}
Let me know
Thanks!