When you uninstall BuddyPress it does not delete the databases so reinstalling would not lose any data. However I don’t think that would help you very much if at all. Your issue will be with other plugins/customisations that have been added and these would not be removed just by reinstalling BuddyPress.
For a BuddyPress site there’s a few areas where a site can be customised:
By installing other plugins ( easily deactivated to remove those features)
By adding customised theme files in a child theme, in particular:
themes/child-theme/functions.php
themes/child-theme/buddypress/... – BuddyPress specific theme files that have been modified.
By adding a plugins/bp-custom.php file.
Any extra customisations in the functions.php file would have to be removed and the file re-saved to the child theme directory.
Files in the child-theme/buddypress directory structure can be isolated simply by changing their extension from php to old.
The bp-custom.php file can be isolated by changing it’s extension to .old
Anything in your child-theme directory would be ignored if you installed a new theme.
The rest is down to the configuration of the theme, BuddyPress and any other plugins you wish to use.
I could hardly arrive here… I have a free version wordPress site and cannot find where to download plugins, as I want to install a forum.
So I cannot install buddyPress nor bbPress!
I cannot even give my version of WordPress as I do not find where it is written… It is from december 2017.
And I could not even log in here with my log in informations from my WP site and had to recreate an account, so I dont even know if I have 2 accounts now, and why the BuddyPress site would not recognize my mail!
Quite discouraging as I used to run an SMF forum, so how much changed in 15 years?!!!
Hey forum.
I have some questions. I have a community site with about 600 users. As I have let another guy run the site over time its all messed up with the design, plugins, etc etc. And now it seems like to big of a job to revert everything step by step. I got lost.
So I am thinking about deleting everything and build an new interface, new buddypress install, theme etc. BUT, how do I make sure that users, their profile info, forum posts etc not get deleted. I am not fluent in how databases work, what is stored where etc?
Could any of you Buddypress troopers give me some advice to the steps needed to be taken and waht to be mindful of? Link to any resources etc.
Any help would be appreciated.
Regards
Terjemk
Take a look at plugins/buddypress/bp-members/screens/register.php this is loaded when the register form is submitted. There’s a hook in there do_action( 'bp_signup_validate' ); which you could use to implement your own validation.
In there you can set `$bp->signup->errors for the error you want to display if the validation fails for that field.
You should definitely have some BuddyPress options in the Tools page, one of these options is to reinstall the BP Emails and selecting that often fixes this problem.
I don’t know if you found one but I found this recently: https://wbcomdesigns.com/downloads/buddypress-hashtags/
Hello,
I working on a custom template for activity loop, I want to display “add to favorite link”, “edit activity post”, “delete activity post” in the select box with 3 dots for each activity post on the top right corner like Facebook posts.
I am using a plugin for BuddyPress edit activity to add edit functionality, which has added edit option on activity meta beside the comment favorite section on each post. I want these options to be displayed and use in the select field on each post. All the activity options are added on the activity meta besides a comment, favorite. I want to display only like, comment, and share in activity meta area and all other options viz. “favorite”, “edit”, “delete” to be inside the select field.
I have made research to achieve this, but could not find resources, anybody please help me to achieve this.
Can not share the link as the files are on localhost.
Your help is appreciated.
Thanks in advance.
Is this not a wordpress issue as opposed to something in BuddyPress, if you can see the extended profile link in the Users list, that’s the only link BP adds to this view, role settings are WordPress.
I have three admin accounts on my site – the default admin, a TempAdmin, and one under my own username. I can edit the first two but not the third. I can view the standard and extended profile but when I mouse over the account I do not see the edit link nor links to assign roles etc. that I see for the other accounts. I am using the latest version of BuddyPress, on the latest WordPress hosted on WordPress.com. Their techs cannot figure this out. Any help would be appreciated. The site is https://hellocommunity.net
Another option that PERHAPS MIGHT work
Have a separate home page for any group you want
Try making a page template called “front-slug-group-name.php” for each group (for which a unique home page is desired)
(“group-name” being the lowercase name of the group)
and put it in wp-content/themes/your-theme/buddypress/groups/single/
as in
wp-content/themes/your-theme/buddypress/groups/single/front-slug-group-name.php
Hello,
I’m using Buddypress latest version, with a child theme.
I would like to enable a specific WordPress role I’ve created (“Gamer”) to be able to edit the BP Profile of all users. How can it be done ?
Cheers,
Denis
Hi there Kenni,
Thanks for reporting this, would you mind raising it as an issue on Trac:
https://buddypress.trac.wordpress.org/
Then you’ll get confirmation when it’s fixed.
Ah got you, I can confirm clicking on blog based notifications does not clear the notification.
Could you raise a bug report on Trac?
https://buddypress.trac.wordpress.org/
Once you’ve done that I’ll add some comments about my own testing.
Ah got you, I can confirm clicking on blog based notifications does not clear the notification.
Could you raise a bug report on Trac?
https://buddypress.trac.wordpress.org/
Once you’ve done that I’ll add some comments about my own testing.
@venutius
Not on the Buddypress activity stream.
Could you please write a post via editor on the WordPress?
I mean on the post thread, not the Buddypress activity stream. 🙂
I’m testing on Twenty sixteen theme+Buddypress plugin only.
Maybe I should be clearer ….The Buddypress navigation css code in WordPress menu that works is bp-menu bp-login-nav to log in my website but when I put the same code in css class in the Menubar plugin it doesn’t work….
Hi,
Thanks for your reply….but I already have a horizontal mobile menu and it looks great, the problem is getting the registration and the log in menu items to work when they are clicked on.
I am looking the same built in BuddyPress navigation functionality that’s built in WordPress to work in my custom menu when users click on the Registration menu and the Log in menu.
If I’m not wrong in new buddypress 3.x you can use the customizer to make it vertical.
I use the WordPress version 5.1.0
BuddyPress 4.2.0, BuddyPress Group Email Subscription 3.9.2 BuddyPress Profile Shortcodes 1.1
Website address : https://pit.mkpbe.org
All our notification group param are lost and are replaced by “no notification”.
I suppose when installing the last version.
Also, when I try to modify the notification param, the modifications are not saved and they are replaced by the value “no notification”.
Best regards,
Jean-Marie Déom
Webmaster MKPBE.org
Use this filter hook and write a function:
apply_filters( 'bp_members_format_activity_action_new_member', $action, $activity );
Found in : ...plugins\buddypress\bp-members\bp-members-activity.php
For example, untested:
function pixie_new_member_activity( $action, $activity ) {
$user_id = $activity->user_id;
// assuming the field names are State and City
$state = xprofile_get_field_data( 'State', $user_id, 'comma' );
$city = xprofile_get_field_data( 'City', $user_id, 'comma' );
$userlink = bp_core_get_userlink( $user_id );
$action = sprintf( __( '%s from %s in %s became a registered member', 'buddypress' ), $userlink, $city, $state );
return $action;
}
add_filter( 'bp_members_format_activity_action_new_member', 'pixie_new_member_activity', 10, 2 );
This is a general WP question and is not specific to BP.
There are many ways to do this – depending on your theme, your ability with code, etc.
There are some plugins that can help you.
We suggest you do a google search on your question without restricting it to BuddyPress and you will see thousands of results.
I am using buddypress in a website that I have developed. I want to disable “REGISTER HERE” buttons if the user is already logged in, or at least put a message close to buttons if user is logged in…how can i do that…or another option is if they are already registered, if they click on the button it takes them to a page that says that they are already logged in and they can see their profile or activity
Using Latest version of buddypress and wordpress