BuddyBoss Home – Web Support Forums Themes Boss. theme Hide "Base" and profile visibility settings & RSS

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

    #38159
    @joymoleta

    Hello, is what I am trying to achieve:
    1. Hide the word “Base” from the profile
    2. When making a change to profile, can we hide “Editing ‘Base’ Profile Group”
    3. Can we hide the “Profile Visibility” options from the settings menu
    4. Hide all instances of RSS feeds

    Thank you.

    Answers

    #38178

    Alyssa
    Participant
    @alyssa-buddyboss

    @joymoleta Add each CSS change to the child theme custom.css file:
    1) .profile .base h4{display:none;}
    2) I suggest you use the translation file to change this word. It is in more locations than just this.
    3) .field-visibility-settings-toggle, .field-visibility-settings-notoggle{display:none;}
    4) This is a BuddyPress issue we have attempted to tackle here: https://www.buddyboss.com/support-forums/topic/remove-rss-feed/

    #38182
    @joymoleta

    Thank you for your response. Unfortunately those changes had no effect. I also am unable to find a translation file in the theme files.

    #38215

    Alyssa
    Participant
    @alyssa-buddyboss

    @joymoleta can you send me a link to your site, I want to check you have the code placed in the correct file in the correct location.

    #38255
    @joymoleta

    @tjchester Hi, I was able to hide the “Base” verbiage. However the css for hiding the “Profile Visibility” menu does not work. Thank you.

    #38302

    Alyssa
    Participant
    @alyssa-buddyboss

    @joymoleta Perhaps it needs !important:
    .field-visibility-settings-toggle, .field-visibility-settings-notoggle{display:none !important;}

    #38319
    @joymoleta

    I had to add this to my child functions.php file

    function remove_privacy_nav() {
    global $bp;
    bp_core_remove_subnav_item( ‘settings’, ‘profile’ );
    }
    add_action( ‘bp_setup_nav’, ‘remove_privacy_nav’ );

    Now it works. Thank you.

    #38427

    Alyssa
    Participant
    @alyssa-buddyboss

    Glad you were able to resolve this. I’ll close this out.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The question ‘Hide "Base" and profile visibility settings & RSS’ is closed to new replies.