PDA

View Full Version : is_member_of on Member Info / Profile page doesn't work?


HouseAddict
07-22-2011, 02:03 PM
Is there any reason why this doesn't work on the member.php (memberinfo template) page?


<vb:if condition="is_member_of($bbuserinfo, 11)">
....
</vb:if>


I just want to display certain badges for certain users underneath their profile pic, depending on the usergroup they're in, and this logic never evaluates/kicks in... while it works just fine on the rest of the forum.

kh99
07-22-2011, 02:09 PM
Try using $userinfo instead of $bbuserinfo ($bbuserinfo is your user information when you're viewing the page, so it's checking your own group).

HouseAddict
07-22-2011, 02:14 PM
that worked!

thanks.