ok this makes a little sense but I did a search on "gallery" in the jrAudio templates with no luck. I did a search for "gallery_title_url" in the skins and came up empty also. So could this be a module template? I did not change any of those.
I had to do some shuffling of templates here because there was nothing in place for artists to allow/disallow downloads of their music. Let me ask you guys, how is the best way to add conditional statements for downloads when all that is displayed is:
<div class="block_config">
{jrCore_item_list_buttons module="jrAudio" field="audio_file" item=$item}
</div>
My code looks like the below that I pulled from PJ.
{jrCore_module_url module="jrAudio" assign="murl"}
{if isset($_items)}
{foreach from=$_items item="item"}
<div class="item">
<div class="container">
<div class="row">
<div class="col2">
<div class="block_image" style="position:relative">
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._item_id size="xlarge" crop="auto" class="iloutline img_scale" alt=$item.audio_title width=false height=false}</a>
<div style="position:absolute;bottom:8px;right:5px">
{if $item.audio_active == 'on' && $item.audio_file_extension == 'mp3'}
{jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_file" item=$item}
{else}
{/if}
</div>
</div>
</div>
<div class="col7">
<div class="p5" style="overflow-wrap:break-word">
<h2><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{$item.audio_title}</a></h2><br>
<span class="info">{jrCore_lang module="jrAudio" id="31" default="album"}:</span> <span class="info_c"><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/albums/{$item.audio_album_url}">{$item.audio_album}</a></span><br>
<span class="info">{jrCore_lang module="jrAudio" id="12" default="genre"}:</span> <span class="info_c">{$item.audio_genre}</span><br>
{jrCore_module_function function="jrRating_form" type="star" module="jrAudio" index="1" item_id=$item._item_id current=$item.audio_rating_1_average_count|default:0 votes=$item.audio_rating_1_count|default:0}
</div>
</div>
<div class="col3 last">
<div class="block_config">
{if $item.audio_dj_download == 'on' && (jrUser_is_admin() || (jrUser_is_logged_in() && $_user.profile_quota_id == $_conf.paDJDownload_dj_quota))}
<div class="add_to_cart_section" title="DJ Download"><span class="add_to_cart_price">Mix DJ</span><a href="{$_conf['jrCore_base_url']}/audio/djdownload/audio_file/{$item._item_id}">{jrCore_icon icon="download" }</a></div>
{/if}
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}" title="Review Song">{jrCore_icon icon="pen"}</a>
{if isset($item.audio_file_item_price) && $item.audio_file_item_price > 0}
{jrCore_module_function function="jrFoxyCart_add_to_cart" module="jrAudio" field="audio_file" item=$item}
{elseif $_conf.jrAudio_block_download != 'on' && $item.audio_downloadable == 'on'|| $item.audio_file_item_price == '0'}
<div class="add_to_cart_section" title="Free Download"><span class="add_to_cart_price">Free</span><a href="{$jamroom_url}/{$murl}/download/audio_file/{$item._item_id}">{jrCore_icon icon="download"}</a></div>
{/if}
{jrCore_item_update_button module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}
{jrCore_module_function function="jrPlaylist_button" playlist_for="jrAudio" item_id=$item._item_id}
{jrCore_item_delete_button module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}
</div>
</div>
</div>
</div>
</div>
{/foreach}
{/if}
updated by @dazed: 12/31/16 09:38:32AM