*bump
OK, I really get stuck with this. So far this is what I have tried. On member.php, I add the following code:
PHP Code:
// set-up for buddylist conditional - profile view
$mybuddies = explode(' ', $userinfo['buddylist']);
if(in_array($bbuserinfo['userid'], $mybuddies))
{
$isbuddy = true;
}
else
{
$isbuddy = false;
}
and on MEMBERINFO template, I test it
HTML Code:
<if condition="$isbuddy">
I'm on $userinfo[username]'s buddy list.
<else />
I'm not on $userinfo[username]'s buddy list
</if>
Unfortunately, I have no luck to get it working. I really need your help on this, please...