Helping my members see their 'pending' Followers
Using Jamroom
Try this:
In your skins menu.tpl add this code:
{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/{$_user.profile_url}/follow">Pending Followers: {jrCore_list module="jrFollower" search1="follow_profile_id = `$_user._profile_id`" search2="follow_active = 0" return_count=true no_cache=true}</a></li>
{/if}
The code reads: "If the user is logged in, get a list of all the followers who are not active. Just return the count of the items, do not cache."