I would like the ‘friends’ tab in the member profile to be visible only for the account owner. I have found a code snippet that should be added to the bp-custom.php.
Your theme doesn’t have such a file so I have created that bp-custom.php and I put it in the plugins folder. But it crashes the whole website. here is what I wrote in bp-custom.php:
<?PHP
add_action('bp_friends_setup_nav','bpdev_custom_hide_friends_if_not_self');
function bpdev_custom_hide_friends_if_not_self(){
if(bp_is_my_profile()|| is_super_admin())
return ;
bp_core_remove_nav_item('friends');
What do you suggest to solve this issue?