Photo Album List Display in Side Bar
Design and Skin Customization
This is the code used in the photo albums item list file:
{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$img_id size="small" crop="auto"}
and its the same as yours, so all you need to do is figure out what the image id is that you're wanting to display is.
Look in the photo album's tempaltes for how it does it:
/modules/jrPhotoAlbum/templates/item_list.tpl
.....
{foreach $item.photoalbum_photos as $img_id}
{if $i >= $limit}
{continue}
{/if}
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.photoalbum_title_url}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$img_id size="small" crop="auto" class="iloutline"}</a>
{$i = $i+1}
{/foreach}