Search Results for 'buddypress'
-
AuthorSearch Results
-
July 23, 2009 at 9:40 pm #49939
peterverkooijen
ParticipantI really do appreciate all the work you do. I’m just really frustrated with the lack of synchronization and consistency between Buddypress xprofile and WordPress users/usermeta etc. Automattic needs to take a serious look at member management.
FYI, here’s the response from the WPMU forum:
Because if a spammer signs up, for instance, and you delete their username and blogs, if their registration member is also deleted, then they can sign up again.
I’m not satisfied with that answer. There must be cleaner ways to block/blacklist spammers.
Isn’t there a plugin that deletes users more thoroughly?
July 23, 2009 at 9:34 pm #49938Paul Wong-Gibbs
KeymasterI wish I had a job writing software! You don’t want to know what I do 9 to 5, haha! el_terko is correct. Andy Peatling works for Automattic on BuddyPress. Sam Bauers develops bbPress.
The moderators on this forum are Andy and: Burt Adsit, Trent Adams, Nicola Greco, Jeff Sayre, John James Jacoby and Paul Gibbs (me!). I think we did something bad in a previous incarnation and this is punishment
. You can also check out this post for a mini-bio.
July 23, 2009 at 8:26 pm #49934peterverkooijen
ParticipantOK, thanks, I’ll post the question there.
But lack of synchronization between Buddypress xprofile and WordPress wp_usermeta etc. is also causing me lots of headaches, so I hope WPMU is not going to send me back here saying that it’s a Buddypress problem. Aren’t you all part of Automattic somehow?
July 23, 2009 at 8:16 pm #49930Paul Wong-Gibbs
KeymasterAsk on the WPMU boards; those aren’t BuddyPress tables.
July 23, 2009 at 7:37 pm #49929peterverkooijen
ParticipantThis plugin attempt doesn’t break anything, but still doesn’t put first_name and last_name in wp_usermeta either:
`
<?php
/*
Plugin Name: Real Name Synchro
Plugin URI: http://
Version: v0.001
Author: peterverkooijen
Description: A plugin to store firstname and lastname from the fullname field in Buddypress registration in WPMU usermeta tables.
*/
function real_name_synchro() {
global $bp, $wpdb, $bp_user_signup_meta;
$fields = BP_XProfile_Field::get_signup_fields();
if ( $fields ) {
foreach ( $fields as $field ) {
$value = $_POST[‘field_’ . $field->id];
}
}
$field->id = ‘1’;
$fullname = $value;
$space = strpos( $fullname, ‘ ‘ );
if ( false === $space ) {
$firstname = $fullname;
$lastname = ”;
} else {
$firstname = substr( $fullname, 0, $space );
$lastname = trim( substr( $fullname, $space, strlen($fullname) ) );
}
update_usermeta( $user_id, ‘nickname’, $fullname );
update_usermeta( $user_id, ‘first_name’, $firstname );
update_usermeta( $user_id, ‘last_name’, $lastname );
$wpdb->query( $wpdb->prepare( “UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d”, $fullname, $user_id ) );
$wpdb->query( $wpdb->prepare( “UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d”, bp_core_get_user_domain( $user_id ), $user_id ) );
}
//Actions
add_action(‘user_register’, ‘real_name_synchro’);
//Filters
?>`
Can anyone suggest fixes or am I fundamentally on the wrong track?
July 23, 2009 at 7:23 pm #49925In reply to: New Groupblog Plugin
3509545
InactiveOkay, thanks for the heads-up. I was just going by this doc here:
https://codex.buddypress.org/developer-docs/action-reference/groups/
July 23, 2009 at 6:55 pm #49922In reply to: How to add user avatar to activity excerpts
Mariusooms
ParticipantAvatar support would be a very nice feature. I looked at the activity code, but couldn’t make much of it. According to the roadmap the code will change in 1.1, so we have:
Grouping of similar activities by one user within X amount of time
https://buddypress.org/about/roadmap/
I really do hope there is an option in the future to liven up the activity stream in this media centered age. I’m surprised it is not included in the roadmap even up to 1.4?
Also, the roadmap also has this nice addition in store for 1.1:
Profile picture updated entry on activity streams
So it would only make sense the new profile picture would be visible in the activity stream as well, since we can’t expect members visiting each listed profile to just see the new profile picture?
July 23, 2009 at 6:28 pm #49919abcde666
Participantthis issue is also mentioned by another person at the german-language-Forum of http://www.buddypress.de
So we are not the only ones having this issue….
July 23, 2009 at 5:38 pm #49913In reply to: How to add user avatar to activity excerpts
r-a-y
KeymasterOoh… good question, cozzie.
I don’t think there’s a parameter that combines both the “personal” and “friends” type.
For the avatar, I’m guessing you would need to either hack the “/buddypress/bp-activity/bp-activity-templatetags.php” file or write a filter to override one of the existing ones in bp-activity, which would include the avatar.
July 23, 2009 at 5:18 pm #49911In reply to: change url
Jeff Sayre
ParticipantJust remember, when you make changes to the core code, like it appears you have, those changes will be lost the next time you upgrade BuddyPress.
That is why you should use the wp-config.php file for customizing your slugs.
July 23, 2009 at 5:16 pm #49910In reply to: Media file repository for users and groups
Jeff Sayre
ParticipantThere is some discussion about turning Manoj’s photo album plugin into an overall media manager. I’m not sure if he is actively considering this idea or not. You could contact him and find out.
https://buddypress.org/forums/topic/bp-photo-what-a-great-plugin#post-16549
July 23, 2009 at 5:12 pm #49909In reply to: Datebox problems in profiles
Jeff Sayre
ParticipantAre you using a non-english, localized version of BuddyPress? If so, this is a known bug: https://trac.buddypress.org/ticket/757
July 23, 2009 at 4:26 pm #49907July 23, 2009 at 3:36 pm #49901In reply to: Username and Name
peterverkooijen
ParticipantYes.
But I want only Username or only Name.
Or why not Username and Name is same.
Thank you
I still want to figure out a way to autogenerate the username from the name; full name with spaces stripped, all lower case.
I know it’s doable with simple PHP code, that I may have used before somewhere – have to dig through my older sites. But where/how could I insert that into the registration process? Would that have to be a plugin? Any pointers appreciated.
July 23, 2009 at 3:22 pm #49899In reply to: User points
Mariusooms
ParticipantHi, stumbled upon this thread and love the concept, as a XBOX 360 owner. Would like to keep track of where this is going. Would be a great social attribute to buddypress.
July 23, 2009 at 3:04 pm #49895In reply to: Username and Name
Jeff Sayre
ParticipantThe username field is a mandatory WPMU field. It is used by WPMU as the “user_login” field of the wp_users table. It is the necessary piece of datum that is used when a user logs in.
BuddyPress has its own mandatory registration field that by default is called “Full Name”. Look in the BuddyPress submenu group in WPMU’s backend. Go to “BuddyPress > General Settings > Full Name field name”.
You can change the “Full Name” field name to display whatever you want but you cannot remove that field from the registration page nor edit it to be something other than a single textbox field–at least not without hacking the core. Look under the “Basic” field grouping in “BuddyPress > Profile Field Setup” to see what I mean.
In fact, for testbp.org, Andy did change the outputted name of that field to simply read “Name”.
It is this BuddyPress field that is used to display the user’s name. If fact, this field can be edited by the user when they visit their profile and navigate “Profile > Edit Profile”. On the other hand, the username field, which is a WPMU field, cannot be edited.
July 23, 2009 at 2:12 pm #49888Jason Giedymin
ParticipantNice! Listen to r-a-y.
July 23, 2009 at 1:39 pm #49887In reply to: Should we use WP/BP or another platform?
Jeff Sayre
ParticipantGabriel-
and then tag the clothes (describe, tag, categorize…). We want to have some level of control here.
In case you have not seen this, there is a wonderful BuddyPress plugin that can address this need: https://wordpress.org/extend/plugins/bpcontents/
July 23, 2009 at 1:26 pm #49885In reply to: change url
July 23, 2009 at 1:25 pm #49884In reply to: Username and Name
Jeff Sayre
ParticipantAre you using a custom theme? Have you added any required fields via the “BuddyPress > Profile Fields Setup” in WPMU’s backend?
By default, WPMU with BuddyPress installed is setup to do exactly what you are asking–have one “Username” field and one “Name” field on the signup page.
July 23, 2009 at 1:06 pm #49883In reply to: Notification
Jeff Sayre
ParticipantMost of the welcome message sent to new registered users is hardcoded within WPMU. Here are a few links to get you on your way:
https://buddypress.org/forums/topic/changing-the-default-welcome-email#post-5017
https://buddypress.org/forums/topic/how-to-change-email-notifications
July 23, 2009 at 12:20 pm #49881Arx Poetica
ParticipantSorry for being a little slow on this topic, but activity streams are hard to wrap my mind around, mostly because I don’t quite get the technology. Does openmicroblogging — is this a viable part of Joseph Smarr’s so-called “social stack”? (I think they’ve moved on to calling it something else now, not “social stack,” but I digress…)
I’ll be building a version of a micro stream soon enough, or trying to adapt a former one (such as the “wire”?) to suit my own purposes.
As I understand it, there’s already a bit of a WordPress plugin:
Why rebuild the wheel, when it’s built? Perhaps we should borrow/resuse from that plugin
There’s a bit of development/discussion going on over here for WordPress itself:
http://groups.google.com/group/diso-project/browse_thread/thread/84481ef2e912a099
http://groups.google.com/group/diso-project/browse_thread/thread/b9f1b8865d3d8526
July 23, 2009 at 12:09 pm #49877Jeremy Winter
ParticipantUpdate 2: Well, I got somewhere. Buddypress appears to be working. The weird part is that I can’t deactivate it. When I click deactivate it says “Plugin could not be activated because it triggered a fatal error.” How weird is that?
I am going to run with it for now. Theme is going to need a lot of work… the fonts appear to have grown for some reason. must be a problem with my custom CSS
July 23, 2009 at 11:47 am #49876Jeremy Winter
ParticipantUPDATE: I attempted to delete all my plugins (mu and normal) from my site. Once they were all deleted, I reinstalled buddypress and then reactivated all of my plugins and yet still I receive the same fatal error.
Is this a problem with 2.8.2?
July 23, 2009 at 11:42 am #49875In reply to: Newest Active Popular problem
LogerM
ParticipantYes. I used bphome and bdmember theme from BuddyPress 1.0.3 package. (I delete old one and upload new)
Here is my instalation for test purposes:
Maybe it will help to sole my problem.
I know that problem is have to be on server side. I was installing BP at my local Wamp instalation and at Zeus Web serwer. – Works fine
Here is phpinfo http://loger.outsider.pl/phpinfo.php
-
AuthorSearch Results