Hi!
If somebody still need to disable activation email, the following function works fine for me:
`
// Change the text on the signup page
add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );
function my_disable_activation( $user, $user_email, $key, $meta = ” ) {
// Activate the user
bp_core_activate_signup( $key );
// Return false so no email sent
return false;
}
add_filter( ‘wpmu_signup_user_notification’, ‘my_disable_activation’, 10, 4 );
remove_filter( ‘wpmu_signup_blog_notification’, ‘bp_core_activation_signup_blog_notification’, 1, 7 );
add_filter( ‘wpmu_signup_blog_notification’, ‘__return_false’ );
`
Thanks to @cnorris23 for it! https://buddypress.trac.wordpress.org/ticket/3443
Hope it helps to someone 🙂
@akgt glad it’s working out for you now. strange it happened in the first place.
@qrahaman similar to pollyplummer’s tutorial at http://wpmu.org/how-to-create-a-custom-buddypress-members-directory/ where make the element float left with right and bottom margins. Good luck
@sbrajesh actually I would like to get it like facebooks notifications somewhere in the header using similar icons to dispay friend requests, messages, notifications and when you have anything then the icon will display accordingly just like facebooks. If anyone can offer assistance I would appreciate it.
@carlh1 Change to Twenty Twelve theme and check out if BP pages are showing up. If it is, then it’s your theme, and you should contact the theme author.
EDIT – they also have another theme “Rounders” with same issue https://buddypress.org/support/topic/bp-template-pack-step-3-2/
a member login menu that would take the registered users to a login form similar to the form on the sidebar. Hope that makes sense.
@bookee you can create a page template with only the login form code you copied then go to Pages > Add New, add Page Title e.g. Join Us, then use the page template with the login form you created. Or, you might want to try out pcwriter’s tutorial http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
thanks. i’m on shared – doubt i even have access to memory settings
Haha, thank you @mercime and @dasped. BuddyPress is definitely my friend 🙂
I attempted to bring up the “duplicate posting” of BP 1.7beta1 to the Parallelus team, but they did not treat it very well and told me to go screw off, in a manner of speaking.
In the meantime, BP 1.6.4 works great with my Parallelus themes (no duplicate posting). I’m sure BP 1.7 public release will have fixed this issue. If not, I will then go to my theme “support” team (with a pretty please and cherry on top).
Thanks again — Marty McGee
Thanks @mercime,
DynamiX theme was fixed within hours of asking the author, with the removal of the line I posted above. If anything he was glad of the head up in relation to changes that are coming. (Best support on a theme I ever had IIH)
Now, with the release of 1.7(b)2 My Ajax issues are a thing of the past also.
BuddyPress is my friend again 🙂
I did all the basic’s but it  still did not work , so I uninstalled both and installed bbPress 2.3b2 and buddypress 1.7b2 and it seems to be working now.
@akgt have you done some basic troubleshooting like reverting to BP Default theme and/or deactivating all plugins except BuddyPress and bbPress?
@shanebp
Just tried it with the change you made and I still have the same issue. it seems only the admin account is effective at blocking, while subscribers has no effect at all when blocking. If user1 blocks user2 then user2 still see’s user1’s activity and is still visible in the members page as well. The only plugins I have activated is your plugin, buddypress, and bbpress. Not sure what the issue is!
@garethmartin when you upgraded WordPress (from what version to latest?), did you upgrade BuddyPress as well? Did you check if your theme is compatible with WP/BP versions?
@coopersita moving profiles to dashboard is harder than enabling your users to post in the front-end from their profile area via existing plugin 🙂 Check out http://buddydev.com/buddypress/introducing-buddyblog-allow-users-to-blog-from-their-buddypress-profile/ See comments area after post for attaching images to the post.
@awmeneca re attaching uploaded media to post, see code posted in comments at http://buddydev.com/buddypress/introducing-buddyblog-allow-users-to-blog-from-their-buddypress-profile/ or post there directly for more information/direction.
Thanks for the tip @scotm. My only concern with that plugin is that the details say it doesn’t support direction to buddypress registration, at least not yet. How did you work around that?
Demetrius Pop
Participant
@demetrius-pop
5 seconds ago
http://www.paulyorde.biz/wp-login.php?redirect_to=http%3A%2F%2Fwww.paulyorde.biz%2Fwp-admin%2Fnetwork%2Fadmin.php%3Fpage%3Dbp-wizard&reauth=1
I just installed buddypress and now I can’t log in to my wordpress account. I am using wordpress 3.5.1 and Buddypress 1.6
When I try and login into WordPress admin panel, I get, “you don’t have sufficient privileges to access this page”.
I’ve been using this site for over a year, and it is a multi-site.
Thanks for any feedback.
http://www.paulyorde.biz/wp-login.php?redirect_to=http%3A%2F%2Fwww.paulyorde.biz%2Fwp-admin%2Fnetwork%2Fadmin.php%3Fpage%3Dbp-wizard&reauth=1
I just installed buddypress and now I can’t log in to my wordpress account. I am using wordpress 3.5.1 and Buddypress 1.6
When I try and login into WordPress admin panel, I get, “you don’t have sufficient privileges to access this page”.
I’ve been using this site for over a year, and it is a multi-site.
Thanks for any feedback.
Fixed in BP 1.7. It’ll be out soon, or you can try the new beta 2 today:Â https://buddypress.org/2013/03/buddypress-1-7-beta-2/
Hello all,
I am looking for a plugin such as Humancaptcha, just for Buddypress. Is there any?
I would like to include questions like these: “Capitol of Bavaria” Answer:”MĂĽnchen” for the registration form.
Any goog idea?
Thank You.
Kai
Anyone else getting this error while using WP 3.5.1 BP 1.6.4 with PHP 5.4+?
Warning: Creating default object from empty value in C:\xampp\htdocs\my-site\wp-content\plugins\buddypress\bp-members\bp-members-template.php on line 620
Anyway I would not call this a solution but I added the below code to my child themes functions.php and it removes this error:
`
/* Remove errors if any */
error_reporting(E_ERROR | E_PARSE);
/* End remove Errors */
`
If anyone has a better solution feel free to share it. Thank you!
@cikez Sorry but I am not too familiar with Artisteer themes structure. Maybe someone that has experience with these themes can jump in to lend you a hand. My apologies!