-
Author
-
August 8, 2016 at 15:40 #131640clubmastermindsParticipant
Is there a way to remove Forums, Messages, Notifications from buddypress area?
August 8, 2016 at 20:03 #131689RaduModeratorHi,
Add this css to wp-admin -> theme options – general settings -> quick css
COPY CODEli#forums-personal-li, li#messages-personal-li ,li#notifications-personal-li { display: none; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 8, 2016 at 20:12 #131698clubmastermindsParticipantAwesome!
What about on the drop down area?
Attachments:
You must be logged in to view attached files.August 9, 2016 at 15:17 #131779RaduModeratorHi,
Add this function to wp-content/themes/kleo-child/functions.php
COPY CODEfunction add_custom_css_for_logo(){ echo "<style>\n"; echo ' li#wp-admin-bar-my-account-notifications, li#wp-admin-bar-my-account-forums, li#wp-admin-bar-my-account-messages { display:none; } '; echo "\n</style>"; } add_action( 'admin_print_styles', 'add_custom_css_for_logo' ,90);
Note : Child theme needs to be installed and activated
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 17, 2016 at 17:43 #132849clubmastermindsParticipantThat didn’t work either. It just left this:
li#wp-admin-bar-my-account-notifications, li#wp-admin-bar-my-account-forums, li#wp-admin-bar-my-account-messages { display:none; }
on my Dashboard area. Never had that happen. Did I do something wrong there?
August 18, 2016 at 16:29 #132995RaduModeratorDo you have child theme installed and activated ? Do you have pasted the entire code that i gave to you including the add_action line ?
If yes, and it not works provide ftp and wp admin credentials
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.