Fan Club skin questions
Design and Skin Customization
Nothing is showing in those lists because you only have one profile on the site.
That list is to show other profiles blog/youtube items.
# Jamroom Apache .htaccess file
DirectoryIndex modules/jrCore/router.php
Options +FollowSymLinks -MultiViews -Indexes
# Headers
<IfModule mod_headers.c>
Header unset ETag
Header always set X-Content-Type-Options nosniff
Header always set X-XSS-Protection "1; mode=block"
FileETag None
</IfModule>
# Compress everything we can
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript text/javascript-x application/javascript
</IfModule>
# All requests through the router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^modules/.*\.tpl$ - [F,L,NC]
RewriteRule ^skins/.*\.tpl$ - [F,L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [B,NC,L]
</IfModule>
{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"} {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"} {jrCore_lang skin="jrSoloArtist" id="13" default="Music"} »</a>
</div>
</div>
</div>
<div class="block">
<div class="title mb10">
<h1>{jrCore_lang skin="jrSoloArtist" id="11" default="latest"} {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"} {jrCore_lang skin="jrSoloArtist" id="14" default="videos"} »</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"} {jrCore_lang skin="jrSoloArtist" id="19" default="tour dates"} »</a>
</div>
</div>
</div>
</div>
</div>
</div>
{jrCore_include template="footer.tpl"}