On the site index page, I have been listing the profiles a user is following with the following jrCore_list function:
{jrCore_list module="jrFollower" search1="_user_id = `$_user._user_id`" order_by="_created desc" limit=10000 template="index_list_following.tpl"}
index_list_following.tpl:
{jrCore_module_url module="jrFollower" assign="murl"}
{if isset($_items)}
{foreach $_items as $item}
{if $item._user_id == $_user._user_id}
<div class="col3">
{jrCore_list module="jrProfile" profile_id=$item.follow_profile_id template="index_list_following_profile.tpl"}
</div>
{/if}
{/foreach}
{/if}
index_list_following_profile.tpl:
{if isset($_items)}
{foreach $_items as $item}
<div class="p5 center" style="position:relative">
<a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a><br>
</div>
{/foreach}
{/if}
updated by @blindmime: 10/25/19 11:27:03AM