solved Solo Artist Skin - How do I remove Latest Activity from Index Page

ukdenny
@ukdenny
3 months ago
304 posts
Solo Artist Skin - How do I remove Latest Activity from Index Page please
updated by @ukdenny: 06/20/24 05:04:34AM
douglas
@douglas
3 months ago
2,786 posts
That section supports three different types of content and is controlled via the skin settings > main > index content.

It will either show the artists blog, comments, or timeline.

If you want to remove it all together, you'll want to modify the index.tpl file.

Hope this helps!-


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
ukdenny
@ukdenny
3 months ago
304 posts
I would like to remove the full section that's ringed in yellow on the screen shot. Could you please help me with the section in the index,tpl file to remove.
need to cut.jpg
need to cut.jpg  •  53KB

douglas
@douglas
3 months ago
2,786 posts
You can replace the entire content of your index.tpl file with this:

{assign var="selected" value="home"}
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">

        <div class="col3">

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="11" default="latest"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="13" default="Music"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrAudio" order_by="_created desc" template="index_list_songs.tpl" limit="1" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" require_image="audio_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/music">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="13" default="Music"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="11" default="latest"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="50" default="video"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrVideo" order_by="_created desc" template="index_list_videos.tpl" limit="1" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" require_image="video_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/{$_conf.jrSoloArtist_main_profile_url|replace:' ':'-'}/video">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="14" default="videos"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

            {* sitewide tag cloud*}
            {jrTags_cloud height="300" assign="tag_cloud"}
            {if strlen("{$tag_cloud}") > 0}
                <div class="block">
                    <div class="title mb10">
                        <h1>Tag Cloud</h1>
                    </div>
                    <div class="block_content">
                        <div class="p5 center top">
                            {$tag_cloud}
                        </div>
                    </div>
                </div>
            {/if}

        </div>

        <div class="col9 last">

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="19" default="tour dates"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrEvent" order_by="event_date numerical_desc" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" template="index_list_events.tpl" limit="5" require_image="event_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/{$_conf.jrSoloArtist_main_profile_url|replace:' ':'-'}/event">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="19" default="tour dates"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

        </div>

    </div>

</div>

{jrCore_include template="footer.tpl"}

Hope this helps!


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
ukdenny
@ukdenny
3 months ago
304 posts
Yes that fixed it, thank you Douglas

Tags