- This topic has 3 replies, 2 contibutors, and was last updated 9 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Question
Answers
Viewing 4 posts - 1 through 4 (of 4 total)
- The question ‘Remove My Likes’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Plugins › BuddyBoss Wall › Remove My Likes
Hi, on the profile page how can you remove my likes from menu?
@parallaxstudios add this to your functions.php file:
function remove_profile_likes_tab() {
if(bp_is_my_profile()) {
bp_core_remove_subnav_item('activity','favorites');
}
}
add_action ( 'bp_init' , 'remove_profile_likes_tab' );
Worked thank you
Any time