Thank you for your reply! I’m apprehensive to use plugins that have been abandoned by their developers (Sitewide Newsletters). I’m going to try out this plugin WP INBOX plugin https://wordpress.org/plugins/wp-inbox & if it works for us then upgrade to the paid version.
It doesn’t allow us to email our BuddyPress groups, but it will allow us to contact our members & various User Roles which will be helpful.
If you are still look, I do have a plug-in reference that seem to be working.
site all update to 5.4 and latest BuddyPress so appears to work even though old.
just message me if still need. I have successful removed all links in customer profile fields.
I recently installed Buddypress and Youzer. But unable to login after resetting password even many times.
https://pasteboard.com/J3jLzzB.png
I’m not an expert, but the only way I’ve found potentially to do this is via separate plugins, e.g.:
BuddyPress Group Email Subscription
Sitewide Newsletters
Hi, I can see that the page is only reloading when I try to create an account now.
Unfortunately with all the plugins you are running it is likely one that is interfering with the buddypress registration. Can you test with only BuddyPress enabled then work through re-enabling until the problem happens again, once you work out which other plugin is interfering they may be able to help.
Hiya, I’m looking for a way to selectively email different BuddyPress groups from within WordPress. We’d ideally like to email our members based on similar profile fields if possible. What’s the best way to set this up?
I’ve enabled BuddyPress now, please try.
I’m not one to normally ask for help as I’ve figured out ways to do quite a few things but I just need some conceptual help from people smarter than I.
I have a buddypress instance where someone performs an action on my website (using strava as an example, imagine it’s them logging a workout) and it creates A) a database entry in my own database and B) an activity in the BP world (and database of course).
I am looking to add the ability to tag another user in this activity, and then the other user would then verify (yes/no) and if yes, then it creates the activity in the BP world and in my database.
I have so far been able to add mentions to my custom form (without a problem, what an easy system!) but I’m stuck conceptually how to continue.
Should I create a duplicate activity with the tagged user’s ID? Will that lead to them getting a notification? Is there a way for them to approve or decline the notification that is already in existence or will I have to build something for that?
Just looking for the most “BuddyPress-ic” way to attack this problem and was hoping I could use your insight.
Thanks in advance!
problem ‘solved’ by deactivating SuitePlugins – Advanced XProfile Fields for BuddyPress
>>Yes, I can choose the “Register & Activate pages” that have been created by buddypress, but if I want to view those pages then I will come to both of them on the Homepage …
@robproce That’s the default behavior when you’re logged in. You can see your register page even when you’re logged in by opening a private window. So if you’re using Chrome, open up “New incognito window”; or on Firefox, open up “New Private Window”; or Edge, open up “New InPrivate Window”, etc.
Hi,
I’m using Buddypress via BuddyBoss. How can I stop this email being sent out ‘Your username and password info’. As the user creates their own password on registration.
This email seems to trigger once I click ‘activate’. I would be grateful if there is a way to stop this email, it’s confusing users.
Thanks
@jvalenzh Based on the threads I’ve seen so far in their comments area, I did think they haven’t found any resolution to Userpro’s plugin conflict with BuddyPress.
At this point, I would suggest hiring a developer to help you integrate Userpro as a “component” of BuddyPress and deactivate BP’s own xProfile fields. Then that new Userpro component can be made to have its own profile tab within the BP ecosystem and update user meta and other related information in database. But it won’t be easy nor cheap. Or much better, hire a developer to create a BuddyPress add-on plugin which adds the features that you like in Userpro for your BP site.
Thank you. I have contacted them but they are not 100% sure it will integrate well with BuddyPress.
@jvalenzh It’s been some time but it seems Userpro doesn’t work well with all BuddyPress components, specifically with BP Extended Profile (xProfile) fields.
I recommend that you seek help at the paid plugin’s comments page re integration with BuddyPress as they provide support for Userpro.
Hi @techsector7,
Thanks for your interest in submitting the Serbian (Latin) translation of BuddyPress! You’re most welcome to do so. Looking at https://translate.wordpress.org/projects/wp-plugins/buddypress/ the Serbian translation of BP is at 15% for the stable version and 6% for the development version.
Become a Translation Editor and select BuddyPress. Choose your preferred language e.g. German. Then select ‘Stable (latest release)’ or ‘Development (trunk)’. The translation needs to be at least 90% complete to be approved for the Stable/Dev languages.
Hi,
Is there a snippet that can be used to allow all group members the ability to change the Group photo and cover image?
Thanks
Hello,
I am being asked to associate (repair)a wordpress page with a buddyPress component which is “Register”. I had one registration page before but since I did not need it anymore I deleted it. How do you stop getting this repair warning. perhaps associating the “register” component with a homepage ?
Thank you!
Register
Hi,
Yes, you can do that.
In terms of BuddyPress, this configuration is called “Root profile”.
You can enable it by putting this line in wp-content/plugins/bp-custom.php
define( 'BP_ENABLE_ROOT_PROFILES', true );
Regards
Brajesh
Hello,
I know one is supposed to associate a WordPress Page with each BuddyPress component directory. (members)
but I am wondering if it is possible to hide the “members’ slug” in urls structure:
example.com/members/username
to something like this instead:
example.com/username
I am asking this because it might posed a security risk allowing hackers to gain access to all members listed in a website just by going to example.com/members
Thank you!
Hello, we need help with the following problem:
When switching our live system from bp 4.3.0 (legacy templates) to bp 5.1.2 (nouveau templates), we are running into problems with the pagination and grid layout for example on the groups page. The reason for this seems to be that buddypress()->current_component is empty. Therefore the loop classes (bp_nouveau_loop_classes()) can’t be generated correctly. We don’t understand why this happens and so far we haven’t been able to reproduce the error on our development system. (This makes troubleshooting almost impossible, because we need our live system to be up and running and therefore switched it back to the old state.)
We are running wp 5.3.2 and bbpress 2.6.4. We already tried to clone the file system and database from our live system (as far as possible), but so far the error did not occur on any other system. We are using several other plugins and tried to deactivate them one by one, also without success. We use a custom theme and template overrides, but this doesn’t cause any trouble at all on our development system. We would be grateful for any advice on how to reproduce the error on our development system or any ideas why current_component is not set as it should be.
Hi,
I’m using BuddyBoss (with BuddyPress).
I used this snippet:
add_filter( 'gettext', 'ps_change_activation_message', 20, 3 );
function ps_change_activation_message( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.' :
$translated_text = __( 'Your membership account is awaiting approval by the site administrator.', 'buddypress' );
break;
}
return $translated_text;
}
But this did not work for changing the message.
Please can you advise?
Thanks
I have wordpress version 5.4 and buddypress version 5.1.2. I am using bbpress, youzer, and buddypress to wordpress full sync.
I had gathered from research that users can private message to other users from the compose screen if they’re not friends, by simply inputting in their username in the input field. But currently the user is only able to send a private message to a friend, rather than any member. How do I open up this functionality so users can find any member in the directory to send a private message?
@artsybohemian BuddyPress override the default registration process, you can check following thread
How to disable the registration function of buddypress?
Hello everyone. I’m wondering if you can help with a small query.
I’ve installed BuddyPress on my site and have created a profile field called ‘Job Title’ that users have to fill out when they register (along with name, email etc.). Is there a way to customise the comments section of a regular blog post so that this profile field (Job Title) is shown along with the user’s name?
For example, right now when a user comments on a blog post, only their name is shown. But what I’d like is for their name and Job Title to be shown.
Thanks in advance for the help!