Quote:
Originally Posted by wh1t3dr3am
Not Success 
Edit :
1.Why if i has been add people still show image for add friend ?
2.why Image add friend show to post you create ?
sry,if i can't speak english very well
Thx 
|
Because you are not considered a friend of a user until he officially accepts your friendship request.
This is the fix the first issue:
PHP Code:
if ($post['userid'] != $vbulletin->userinfo['userid'])
{
$postuserinfo = fetch_userinfo($post['userid'], 128);
$isfriend = $postuserinfo['isfriend'];
if (!$isfriend)
{
$template_hook['postbit_userinfo_right'] .= '<a href="profile.php? ' . $vbulletin->session->vars['sessionurl'] . 'do=addlist&userlist=friend&u=' . $post['userid'] . '"><img src="YOUR IMAGE" alt="" border="0" /></a>';
}
}