OK I’ve done a little further investigation and this seems to be an issue with Buddypress Legacy only.
If your theme allows you to switch to Buddypress Nouveau (go to Settings – Buddypress – Options) this should fix the problem.
If for some reason you can’t switch to Nouveau, the clue is in the difference between the two versions but I’ll need to do some further investigation to see exactly what’s happening and/or how to make the filter work as expected in Buddypress Legacy.
Hi guys,
Somehow my BuddyPress filter – menu list – background -on hover – changed colors and acquired an outline, when testing a theme and returning to my original theme.
I have attached a screenshot of the filter. You will see the highlighted menu item is blue with a thick black outline when hovered over. I have tried to show as much info as possible in the hope someone can provide a css, for when hovering over a menu item to remove the black outline (on hover), and change the background color (on hover) to #21759b, and the text color (on hover) to #ffffff to suit my theme.
This problem has happened to a few of my filters but I’m sure I can fix those if I can get the css for this one.
URL to screenshot in my dropbox
https://www.dropbox.com/s/q9dvxqlhi23j41k/Filter%20-%20on%20hover%20background%20color.PNG?dl=0
Thank you
Wordpress Version 5.4.1
Buddypress Version 6.0.0
Hi,
Thank you for your response. After speaking to different providers, Phlox (theme) believe it is a bug related to them and they are investigating it now.
I will keep this forum updated on the latest developments.
Thanks again,
Conversing Care Dev Team.
I’ve tried a fresh install of Buddypress with a standard wordpress theme and can’t replicate your issue.
The following code still works for both the bp legacy and bp nouveau templates.
add_filter( 'bp_activity_do_mentions', '__return_false' );
Perhaps you have something else bugging it somewhere in your theme or plugins.
Otherwise it might be best just hiding it through plain css for the time being, e.g.
.buddypress #activity-mentions-personal-li,
.buddypress #activity-mentions,
.buddypress .user-nicename {
display:none!important
}
Hi Aditideo,
If you change to the twenty twenty theme or similar do you then see the toolbar and notification bar?
Hello,
I am using buddyboss theme and buddypress plugin and I can not see toolbar or notification bar on the frontend of the site.
which settings do I need to check and which steps I need to follow. please guide asap.
Hello i have the same problem
I use “Blake” theme
if I go to the default theme, the problem persists
and disabling plugins is the same
WP 5.4.1
BP 6.0
Bimber Theme
Website > https://chopstickgang.com/
I have Buddypress, alongside BBpress, and youzer installed.
The login/register functions work, but there is no “your account was made successfully” or similar notifications I’ve checked both Buddypress and Youzer plugin settings for any options but I can’t see anything.
Does anyone know how I can troubleshoot this?
You can use the following codes inside child theme functions.php or using code snippet plugin.
https://pastebin.com/5gVGZwqr
You’d have to ask your theme developer, Buddypress doesn’t have dark mode nor slideshow images.
Perhaps there’s something your theme hiding it or maybe you haven’t created the pages for the components yet?
Register and Activation Pages
Hi,
I am unable to activate new components on the BuddyPress Settings page because there is no save button. Why is this?
The theme is Phlox Pro and the main plugins we are runnings are Contact Form 7 and Yoast SEO.
Any help would be very much appreciated as we are a charitable organisation with very limited resources.
Website address if needed: http://www.conversingcare.org
Start with the basics, did you change your theme to see if the issue is theme based?
Did you turn off your other plugins to see if its another plugin is interfering?
There are two different notification pages inside the members area, are they both blank?
you-website.com/members/user-name/notifications/
you-website.com/members/user-name/notifications/read/
Go through each step and narrow down your search to locate the bug.
You can either find where the sidebar is being called in your theme, override the buddypress group templates to not have the sidebar or just hide it through plain css.
.buddypress.sd .sd-sidebar {
display:none
}
.buddypress.sd .entry-content.sidebar-active {
width: 100%;
}
I assume you’re talking about the group listing when referring to ‘clicking the group’. In that case I believe you’d want to customize the groups/groups-loop.php template by copying it into your own theme and conditionally remove the links if the current user isn’t a member.
Here’s docs on the template hierarchy in Buddypress – https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
That should allow you to control that list of groups and suppress links depending on role.
As to the request access form if for some off chance they make it to that screen, if you want to suppress the form with a blocking message when they’re a member you can use the same template replacement concept to replace groups/single/home.php
Or potentially this plugin by @imath may be more appropriate as you could just make the groups private/hidden;
https://github.com/imath/altctrl-public-group
I also need this, and this code also does not work, I add it to the Functions.php theme function file, right?
I can’t upload media in my groups or activity stream this is the message that pops ups….You need to define a type parameter to insert activity.
I am using rt media because that is the plugin that my theme came with.
What can I do???
Hi there, I am using BuddyPress as part of the Socialize theme and it works great! Within BuddyPress > Components > I have “Account Settings” enabled. However if a user elects to change their password they are prompted with the standard WordPress forgot password page https://prnt.sc/snqe36 and not the forget password page of the theme. Is there a way to enforce it to use the forget password page from the Socialize theme? https://prnt.sc/snqff6
Also, just curious if anyone knows what theme this BuddyPress forum site is built on?
Thanks
@bluesweet it will depend upon your theme.
You can inspect the element and can hide with custom CSS.
Your piece of code have saved my day. Thank you so much!
I guess you have solved your problem, after four months. Basically, you have to copy the memmbers/index.php, either from bp-legacy or bp-noveau (depending which you are using), to your theme buddypress/members directory, and modify the order of the options in the select element.
After making the changes that I wanted
Change “activity tab” to “Social Wall”
Change “docs” to “Official Docs”
Hope this helps ….
// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// http://themekraft.com/customize-profile-menus-in-buddypress/
function my_setup_nav() {
global $bp;
// Change name of menu item
$bp->bp_nav[‘docs’][‘name’] = ‘Official Docs’;
// Change name of menu item
$bp->bp_nav[‘activity’][‘name’] = ‘Social Wall’;
}
add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
i found this snippet and it works great …
// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
function my_setup_nav() {
global $bp;
// Change the order of menu items
$bp->bp_nav[‘messages’][‘position’] = 100;
// Remove a menu item
$bp->bp_nav[‘conversations’] = false;
// Change name of menu item
$bp->bp_nav[‘communities’][‘name’] = ‘My Conversations’;
}
add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
Welcome mail is not going from my site as well as mails which are going have text-only ( no colors at all). I tried re-importing mail templpates and reinstalled the plugin but it’s still not working.
My site
Wordpress Version : 5.4.1
Buddypress Version : 6.0.0
Theme : WPLMS