Here is the original code
{if isset($_items)}
{foreach from=$_items item="item"}
<div class="col3">
<div class="wrap">
<a href="{$jamroom_url}/{$item.profile_url}">
{jrCore_module_function
function="jrImage_display"
module="jrProfile"
type="profile_image"
item_id=$item._profile_id
size="xlarge"
crop="auto"
class="img_scale"
alt=$item.profile_name
title=$item.profile_name
}
</a>
</div>
</div>
{/foreach}
{else}
{jrCore_include template="no_items.tpl"}
{/if}
And here is my modified code. I attempted to remove the tags that link back to the users account and displays the name. I also tried to change the source it was pulling the images from, but I now I get an error saying I don't have the proper "type" defined. I looked up the docs and found:
(jamroom url)/(module url)/image/(datastore key)/(item_id)/(size)
But that didn't give me a list of what key's those could be, or where to find where that working list maybe on my site. Again, sorry I am not understanding. My code:
{if isset($_items)}
{foreach from=$_items item="item"}
<div class="col3">
<div class="wrap">
{jrCore_module_function
function="jrImage_display"
module="jrGallery"
item_id=$item._item_id
size="xlarge"
crop="auto"
class="img_scale"
}
</div>
</div>
{/foreach}
{else}
{jrCore_include template="no_items.tpl"}
{/if}
updated by @xephius: 06/19/17 09:18:00AM