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
I read that there are at least two ways to edit buddypress templates (i.e. Member activity page):
1-copy parent theme’s buddypress folder into child theme and edit the templates in child theme directory
2-use hooks to hook into the templates and add content
I recently used method 1 and was able to edit profile pages/group pages without much issue. But, how does updating the plugin/theme work? If I update the theme/buddypress, will my child theme containing it’s own buddypress folder receive the benefits of the new updates? What’s the best way to receive the benefits of updates while utilizing method 1 (pasting buddypress directory into child theme)?
Thanks in advance.
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.
Under the users profile picture on their profile page the latest post appears. Why?? I want to remove this. Every time I post a comment in the activity stream under my profile picture on my profile page the comment appears. The creators of my theme told me they do not help with customization.
I have tried using this CSS code below but it only got rid of the time stamp not the actual latest message.
You can use custom CSS to hide it
body.my-activity div#latest-update {
display: none;
}
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