Search Results for 'buddypress'
-
Search Results
-
Topic: Problems changing languages
I try to use BuddyPress’s functions in different languages (switching with the Polylang plugin).
Have tried making different pages with BuddyPress/settings/pages. This only causes me error in the original language also (eng uk).
Everything works well in the original language.What can I do?
I use the latest versions of WordPress and all plugins.
Hello Team,
I’d greatly appreciate support fixing this issue that has plagued my site for the last year and has caused me to abandon the hopes of finally finishing my work. In essence, my admin account is flagged as a spammer by BuddyPress across my entire multi-site network! I am not sure where it started, although I have a hunch it was caused by the plugin “Join My Multisite”. Either way, I have deactivated all plugins and created new sites on my network from scratch but as soon as I install BuddyPress the admin account will be marked as a spammer! This is a huge problem because my site uses BuddyBoss theme, which is powered by BuddyPress! I am in extreme need of assistance here! Please and thank you.
Here is another thread with a user experiencing a similar issue:
https://buddypress.org/support/topic/my-account-marked-as-spammer-and-i-an-admin/Hi
I use one-community theme along with buddypress and bbpress.
How can I translate “forum moderation” email entitled “my site’s name Moderation: Flagged topic”?
see screesnhot :

This notification email deals with forum moderation so I previously thought it concerned BBpress. But BBpress support assured me that they do not have the term ‘flagged’ in it and they’re not involved.
So, they told me to ask you directly.Could you tell me how and where I could perform this translation?
TIA : )
CGC
Hello Team,
I am working on a metrimonial website. and I have installed a seeko theme which included buddyPress plugin too. What I want to do is too show the profile fields according to the membership levels. Suppose if the user have free membership account then, he’ll be able to see the limited profile fields of other users or if the user have the paid membership account then, that user can access all the profile fields of other users too. Basically, I want to show profile fields of other users according to user membership levels.. Quick and Small Help will be appreciated… Thanks in Advance!!I’m new to BuddyPress but enjoying what it can do.
I’m creating a website/community site for a sailing club and I want to be able to restrict member profile views to cogged in members. Actually, I’d like to make the member directory private too. I can’t quite work out how to do this. In the UK (and Europe) we have strict Data Protection laws and I’m a bit surprised the default seems to be only to restrict Profile edits… Anyhow, if someone can steer me in the right direction I’d appreciate it.
Many thanks.
Is there a piece of code that can be used to substitute the group name from within any of the BP group pages. I need to use a shortcode with a parameter set to the current group name.
WordPress 5.2.4, BuddyPress 5.0.0, https://ctacministries.org (requires login)
Thanks – Mark
Would love to be able to style Buddypress with Elementor and or Brizy.io instead of using a Theme. I would buy a plugin for this if a developer builds one.
Topic: Private message
HI,
I already asked this question 4 weeks ago without answer from Buddypress support. So I try again !
Members of my community must be connected to my site to see the members list.
When I am connected, if I see someone connected (widget in sidebar), I click on his photo, I see his profile and “Private message” near the round photo.
I click on “Private message” and arrive on my profile.
I suppose that I only have to write the message. NO ! I must search the name of the person (I was on his profile just before !) and then write the subject, and the text.
Is it the normal way or is there something wrong in my settings ?
Thanks in advance.
WP 5.2.4 with Twenty sixteen, Buddypress 5.0.0, https://www.alpes-spirit-chapter.com/
Regards.Hello,
Thanks for your plugin and sorry for my english…
3Here is my problem:
I recently installed Buddypress to create a social network website.
However I have a problem I can’t edit any page with elementor pro page builder that seems to have any Buddypress components in it …
It always shows me the same message “the content area was not found in the page”,I have a black screen and I can’t edit the page…And if I change this page to not be a Buddypress page anymore in settings>buddypress>pages,I can edit the page with no problem.
I want to customize with elementor a login page on my site and a register page and put a login or register widget from the Youzer plugin.
Youzer is an additional Buddypress and wordpress user profile plugin so I think it works with Buddypress and “call” some of the buddypress components …What can I do to be able to edit those pages ?
For informations:
Wordpress version: 5.2.4
Theme : Hello elementor child 1.0.0
Buddypress version: 5.0.0
bbpress 2.6.2
Youzer:2.3.3
Elementor 2.7.5
Elementor pro 2.7.3Thanks for your help.
Hi. Is there anyone here who agrees to fix the Buddypress Activity Plus pole to work for php 7.3? The plugin is unfortunately not being developed anymore but is available on github. I like this plugin but it has been closed and my ability does not allow it to be repaired.
Can anyone help me?Topic: Conflict with Yoast SEO
Hi there,
Looking for how to change the number of members displayed in the member loop I ended on this very old topic:
https://buddypress.org/support/topic/change-the-number-of-members-to-be-displayed-per-page/This is obsolete and a better way to do this is now to use a filter in bp-custom.php or the functions.php of your theme as describe in the codex:
So just posting this in an attempt to prevent others to use this old solution.
Especially given that this old way doesn’t work with WP Rocket cache and a logged in user.function my_bp_members_per_page( $retval ) { $retval['per_page'] = 24; return $retval; } add_filter( 'bp_after_has_members_parse_args', 'my_bp_members_per_page' );Regards,