BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Hiding menu items in Group and Profile using CSS

Tagged: , ,

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

    #49630
    @palmdoc

    For a menu tab in a Group (site/groups/groupname) , I used

    /* Hide Group Tabs */
    
    #nav-notifications-groups-li {
    display: none; !important;
    }
    #members-groups-li {
    display: none; !important;
    } 

    in my Buddyboss child theme to hide the email notifications and members items. Worked well

    Now for the Profile (site/members/username/profile/)
    I am trying to remove the Wall menu item

    /* Hide Profile Tabs */
    #wp-admin-bar-my-account-activity {
    display: none; !important;
    }

    – this unfortunately does not work.

    Any advice appreciated, thanks

    Answers

    #49794

    Anonymous
    @

    Hi @palmdoc, Please attach a screenshot so I could provide an exact code for that.

    Regards
    Pallavi

    #49813
    @palmdoc

    Thanks but I managed to figure out. Removing ‘Wall’ and ‘Friends’ from the Profile menu :

    #activity-personal-li {
    display: none; !important;
    }

    #friends-personal-li {
    display: none; !important;
    }

    #49829
    @palmdoc

    The above all works for me in a desktop browser. In the mobile Buddyboss theme the menu items still show up.
    Any clues as to why this is so?

    Thanks

    #50720

    Anonymous
    @

    Hi @palmdoc, Provide me your site url so I could check it once.

    Regards
    Pallavi

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Hiding menu items in Group and Profile using CSS’ is closed to new replies.