List of users who are not following.

alt=
Ekwe
@ekwe
10 years ago
212 posts
Ok, for this one. I was trying to call members on the site that the follower is not following. But it's still showing members the user is following

{jrCore_list module="jrProfile" order_by="_created RAND" search1="include_followed = false" search2="profile_id != `$_user.user_id`"   template="side_members_row.tpl" limit="5"} 

This one, I want to display the people that the user is following. But showing nothing. How can we make it work please. Thanks

{jrCore_list module="jrFollower" profile_id=$_profile_id template="followers.tpl" include_followed="false" pagebreak="8" page=$_post.p pager=true }


updated by @ekwe: 11/15/14 12:14:01AM
michael
@michael
10 years ago
7,714 posts
List of users who are following:
{jrCore_list module="jrFollower" search1="follow_profile_id = `$_profile_id`" search2="follow_active = 1" order_by="_created desc" limit="15"}

List of users who are not following:
{jrCore_list module="jrFollower" search1="follow_profile_id = `$_profile_id`" search2="follow_active = 0" order_by="_created desc" limit="15"}

Taken from the elastic skin.
/skins/jrElastic/profile_header.tpl

Tags