First you'll want to modify your skins/YOURSKIN/index.tpl and find this:
{if jrCore_module_is_active('jrComment')}
{jrCore_list module="jrAudio" order_by="audio_comment_count NUMERICAL_DESC" limit="5" template="reviews_row.tpl"}
then change it to this:
{if jrCore_module_is_active('jrBlog')}
{jrCore_list module="jrBlog" order_by="blog_comment_count desc" limit="5" search1="blog_category = song_review" template="reviews_row.tpl"}
Then modify your reviews.tpl and replace all the code in the template with this:
{if isset($_post.option) && $_post.option == 'videos'}
{* assign var="com_mod" value="jrVideo" *}
{assign var="search_tag" value="video"}
{elseif isset($_post.option) && $_post.option == 'songs'}
{* assign var="com_mod" value="jrAudio" *}
{assign var="search_tag" value="song"}
{/if}
{jrCore_list module="jrBlog" order_by="blog_comment_count desc" limit="5" search1="blog_category = `$search_tag`_review" template="reviews_row.tpl"}
Then modify your reviews_row.tpl and replace all the code in the template with this:
{if isset($_items)}
{jrCore_module_url module="jrBlog" assign="burl"}
{foreach from=$_items item="item"}
<div class="body_5 page" style="padding:5px; margin-bottom:5px; margin-right:10px;">
<h3 style="font-weight:normal;">
<a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$item._item_id}/{$item.blog_title_url}">{$item.blog_title|truncate:35:"...":false}</a>
</h3>
<div style="font-size:12px;">{$item._created|jrCore_date_format}</div>
<div style="font-size:11px;"><span class="highlight-txt"><i>By:</i></span> <a href="{$item.profile_url}"><span class="capital">{$item.profile_name}</span></a></div>
{if jrCore_module_is_active('jrComment')}
<br>
<div class="float-right" style="padding-right:5px;">
<a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$item._item_id}/{$item.blog_title_url}
</div>
<div class="clear"></div>
{/if}
</div>
{/foreach}
{else}
<div class="body_5 page" style="padding:5px; margin-bottom:5px; margin-right:10px;">
{jrCore_lang skin=$_conf.jrCore_active_skin id="166" default="Sorry! There are no reviews to list."}
</div>
{/if}
and finally, to keep these blogs from showing in the user blog section, modify the site_blogs.tpl and find this:
{jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" pagebreak="9" page=$_post.p}
and replace it with this:
{jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive,song_review,video_review" pagebreak="9" page=$_post.p}
be sure to clear your caches after making the changes.
To create a song or video review, just create a blog and make the category be either song_review or video_review.
Hope this helps!
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos