Profile views, followers and following
Design and Skin Customization
Not sure how to get the number following but for the other two you could try something like this.
<div class="block mb20" style="border:1px solid #DEDEDE;">
<div class="block_content">
<div class="body_1">
<div class="profile_image mb10">
{if jrProfile_is_profile_owner($_profile_id)}
{jrCore_module_url module="jrProfile" assign="purl"}
{jrCore_lang skin=$_conf.jrCore_active_skin id="25" default="Change Image" assign="hover"}
<a href="{$_conf.jrCore_base_url}/{$purl}/settings/profile_id={$_profile_id}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xlarge" class="img_scale img_shadow" alt=$profile_name title=$hover width=false height=false}</a>
<div class="profile_hoverimage">
<span class="normal" style="font-weight:bold;color:
</div>
{else}
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
{/if}
</div>
<div class="row">
<div class="col3" style="border-right:1px solid #DEDEDE; padding-left: 10px;">
{$_user.profile_view_count}<br>
Views
</div>
<div class="col3" style="border-right:1px solid #DEDEDE; padding-left: 10px;">
{$profile_jrFollower_item_count}<br>
Followers
</div>
<div class="col4 last" style="padding-left: 10px;">
<br>
Following
</div>
</div>
</div>
</div>
</div>
updated by @garymoncrieff: 10/24/15 05:09:01AM