Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #38884
    @parallaxstudios

    Hi, on the profile page how can you remove my likes from menu?

    Answers

    #38906

    Alyssa
    Participant
    @alyssa-buddyboss

    @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' );
    #38908
    @parallaxstudios

    Worked thank you

    #38997

    Alyssa
    Participant
    @alyssa-buddyboss

    Any time

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Remove My Likes’ is closed to new replies.