BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Hide "Base" and profile visibility settings & RSS
Tagged: base, hide, hide RSS, profile group
- This topic has 7 replies, 2 contibutors, and was last updated 9 years, 7 months ago by Alyssa.
Question
March 29, 2015 at 12:44 am #38159@joymoletaHello, 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 feedsThank you.
Answers
March 29, 2015 at 9:50 am #38178@alyssa-buddyboss
AlyssaParticipant@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/March 29, 2015 at 1:32 pm #38182@joymoletaThank you for your response. Unfortunately those changes had no effect. I also am unable to find a translation file in the theme files.
March 30, 2015 at 8:14 am #38215@alyssa-buddyboss
AlyssaParticipant@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.
March 30, 2015 at 5:11 pm #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.
March 31, 2015 at 11:36 am #38302@alyssa-buddyboss
AlyssaParticipant@joymoleta Perhaps it needs !important:
.field-visibility-settings-toggle, .field-visibility-settings-notoggle{display:none !important;}
March 31, 2015 at 12:06 pm #38319@joymoletaI 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.
April 2, 2015 at 11:17 am #38427@alyssa-buddyboss
AlyssaParticipantGlad you were able to resolve this. I’ll close this out.
- The question ‘Hide "Base" and profile visibility settings & RSS’ is closed to new replies.