define( ‘BP_ENABLE_MULTIBLOG’, true ); in wp-config.php this enables buddypress stuff on the subsite
by default it is false
WordPress version 5.7.2
BuddyPress version 8.0.0 (Legacy)
My website is not yet pulic, so no link. I just would like to know how I can hide the notification bell from top navigation bar- I tried every CSS I could come up with but unfortunately I couldn’t find the right one, so would appreciate some help here. I mean this: https://gofile.io/d/VWTqV4
WordPress version 5.7.2
BuddyPress version 8.0.0 (Legacy)
My website is not yet pulic, but here I describe what I am aiming for: https://gofile.io/d/zYGthw
Is there a plugin which can achieve this? It would have to be a dynamic solution, as I would want to have the placement rather every 3 to 4 rows and when the number of members grows, it would have to display automatically with new members, so I wouldn’t have to insert it manually.
I don’t use an ad plugin as these get detected by ad blockers and thus are useless. I create ads myself with sliders. Currently I use widgets where I can choose user role based who sees the ad sliders and who doesn’t. So same would be needed for the above. I would want to display the ad sliders to basic members and not to premium members.
WordPress version 5.7.2
BuddyPress version 8.0.0 (Legacy)
My website is still not public, that’s why I don’t send a link, but you can view a sceenshot regarding the issue: https://gofile.io/d/bBBHNU
When a user makes a member search, the first search result he gets is always his own profile. I might be weird, but when I want to search for OTHER members, I am not particularly keen on finding my own profile as a search result, since I already know me 😀 Anyway: How can I stop this nonsense? Is there a code snippet which I can use to ‘hide own profile’ or something?
@shanebp is there any information I can provide you with that may help solve my issue? If so just tell me what to copy and paste. I apologize I’m very new to BuddyPress and this loop system is a big learning curve for me. Any guidance at all is greatly appreciated.
Hi @leahkoerper
Thanks a lot for these new inputs. I’ve tested what you’ve described to try to reproduce the issue. I’ve created 3 new users on my development environment:
– User A is contributor
– User B is Editor
– User C is Subscriber
Being an admin, I’ve added a field without enforcing the field visibility.
Users A, B & C can change the field visibility and the field visibility they chose is fully respected.
So I can’t reproduce your issue with a fresh WordPress install with only BuddyPress being activated.
I believe you may have some code running on your config that prevents BuddyPress to act like it should. If it’s not a plugin or a theme, try to look if there’s an existing wp-content/plugins/bp-custom.php file or a wp-content/mu-plugins/ directory with files in it.
Hi @imath,
We are having the same issue as @tamarazambrana. Tested on a new and up-to-date WordPress and BuddyPress install with no other plugins or any sort of caching anywhere. There are no errors in the browser console on the front-end or back-end. If we add 8+ (from rough observation) fields into Signup field, the rearrangement of fields do not stick and start to get rearranged on their own.
You can see what’s happening here, as an example – https://youtu.be/T8BbbEgKzfs
Thanks.
@imath – I deactivated all plugins except BuddyPress and switched to Twenty Twenty-One. The issue persists for an Editor or Contributor user. If I change that user to an Admin, then the field visibility options match what I had set AND (if it’s not set to be enforced) they can also change and successfully save the field visibility.
I can’t make all of these folks admins, but do you have any other ideas for me? Or might this be a bug with the role capabilities?
Hello,
I’m building the registration page of my new website using BuddyPress 8.0. I’ve encountered an issue that seems to be related to the new “Terms Acceptance” checkbox profile field, and the total number of fields that are in the “Signup Fields” group.
I want the terms acceptance checkbox to be at the bottom of my registration page, and have ordered the “Signup Fields” group accordingly. The terms acceptance box will stay at the bottom of the list, until I add more than 8 fields to the “Signup Fields” group, and reorder these fields. The terms acceptance box will then move itself to the second position on the list within the “Signup Fields” group. If I reorder the fields again, the same issue will still occur. The only way I can fix it is to remove other fields from the group so that there is no more than 8 in total.
I’ve tried using a different theme and turning off all plugins except for BP, and the issue still occurs. Is there a limit on the number of fields that can be included in the “Signup Fields” group tab? I’d really like to include more than 8 field options.
Thank you.
I know but there isn’t a forum for BuddyBoss, and I don’t know if it’s BuddyBoss or BuddyX or something completely different that’s causing the issues, and maybe someone using BuddyPress has had a similar issue. I’m just trying to narrow down the problem.
Greetings.
We are considering using Buddypress for online learning and community. Does it have a good Hebrew tool or plugin to translate content and the main site?
Awesome!
Thank you very very very much!
I could make it!
I love BuddyPress.
I was thinking which one is good for me, BuddyPress or BuddyBoss before I use BuddyPress.
BuddyPress is so GOOD!
So, I will use BuddyPress forever.
Those settings are not coming from BuddyPress.
Are you using some plugin to extend BuddyPress groups?
Perhaps a digest of some kind?
If so, you should contact the creator of that plugin or code.
Hello.
I`m new user of BuddyPress, and I would like to know if it is possible to create differents registration pages, and depends on which page is, the new user automatically join to an specific group.
thanks in advance.
Here is shot of the BP frontend admin member email status: 
And one of the WP backend BP Groups member view: 
This email option appears to me to be a part of the BuddyPress product.
Hi @mastersat
Thanks for your feedback, could you tell us:
– what Theme you are using?
– do you know if this Theme or a Plugin is overriding BuddyPress Templates?
– if you have no idea about the above points could you look into your themes/plugins files to see if there’s a members/single/home.php file?
Sorry, I’m rereading your reply. Yes, I do have Buddypress installed. I will post this on that forum.
Thank you very very much.
I put the code in the of functions.php like this.
But it doesn’t work.
I can still see the alphabetical sort in the page.
Member
Group
remove_filter( ‘_bp_nouveau_member_reset_front_template’, ‘bp_nouveau_member_restrict_user_front_templates’, 10, 1 );
$nav = buddypress()->members->nav;
// Eventually reset the order.
bp_nouveau_set_nav_item_order( $nav, bp_nouveau_get_appearance_settings( ‘user_nav_order’ ) );
return $nav->get_primary();
function mitsuh_remove_alphabetical( $filters, $context ) {
unset( $filters[‘alphabetical’] );
return $filters;
}
add_filter(‘bp_nouveau_get_members_filters’, ‘mitsuh_remove_alphabetical’, 20, 2 );
}
BuddyPress does not include forums.
You are probably using the bbPress plugin which has its own support forums.
Thank you very much.
But I can’t find
apply_filters( ‘bp_nouveau_get_members_filters’, $filters, $context );
in
buddypress\bp-templates\bp-nouveau\includes\members\functions.php
I checked the code in functions.php.
But I couldn’t find.
I am not good at writing code.
How to find the code in functions.php?
How to put this code, too?
function mitsuh_remove_alphabetical( $filters, $context ) {
unset( $filters[‘alphabetical’] );
return $filters;
}
add_filter(‘bp_nouveau_get_members_filters’, ‘mitsuh_remove_alphabetical’, 20, 2 );
Please let me know.
I’ve done something, but I don’t know what? I think the slugs for the ‘forum’ page may have had a conflict (there was a warning message, but I changed the names), and I think the tabs went missing after I rebuilt the tables, but the tabs have totally disappeared now, and I don’t know how to get them back.
I uninstalled and deleted/reinstalled bbpress, and it hasn’t brought them back.
I’m really worried that if I delete the Buddypress plugin, I will lose my settings and customer lists of Participants. Any advice would be very much appreciated.
I added buddypress groups. On many example pages I see on a group page tabs on top to choose the menu options. I tried different themes, I can only add a menu in the sidebar.
And I can not find the “Manage the Groups default front page” option that is spoken about on this forum. Do I need an extra plugin for that?
afaik, that setting is not native to BuddyPress.
It is added by some other code or plugin.
You need to find the code that is adding that setting.
Use the IMG button to add an image.
buddypress 8.0.0
BuddyX buddypress theme active
I also have buddypress group chatroom, buddypress for pwa for wp, LearnDash working together.
#1 question: When I do not have the Activity page Private, anyone in the world can see a chunk of activity if they have the link (such as who friended whom. it does seem to not show conversations).
Isn’t there a way to have the activity be Private so random ppl can’t see anything that’s going on in the Private group???
#2 question: When I try to add people to a private group nothing happens. I type in the user name or the first few letters into the ADD new members space and no names pop up and nothing happens except an error saying “the following users could not be added to the group”
I’d like to be able to add them without them having to request to join so they can get notifications right away.
I do NOT want to alter code because things like that freak me out that I’ll break something or forget where I added code if I need to remove it etc.
Please help
Use the filter hook to unset that element from the options array.
This is the hook: apply_filters( 'bp_nouveau_get_members_filters', $filters, $context );
Found in: buddypress\bp-templates\bp-nouveau\includes\members\functions.php
function mitsuh_remove_alphabetical( $filters, $context ) {
unset( $filters['alphabetical'] );
return $filters;
}
add_filter('bp_nouveau_get_members_filters', 'mitsuh_remove_alphabetical', 20, 2 );
Put it in your theme > functions.php