Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: [Resolved] Show ”Cancel Friendship” in Friends List?


Brajesh Singh
Participant

@sbrajesh

In that case, you can always put this in the functions.php/bp-custom.php and it will fix the issue

`
add_filter(‘bp_get_add_friend_button’, “friend_fix_bp_button_bug”);

function friend_fix_bp_button_bug($button){
if($button==’is_friend’)
$button=false;
return $button;
}
`

Edit: I posted wrong id, updated now.

Skip to toolbar