Search Results for 'buddypress'
-
AuthorSearch Results
-
December 23, 2009 at 9:00 pm #59448
In reply to: Friends and Groups for BuddyPress 1.3
abcde666
Participantthe suggestion of JJJ is great, but why not make “Groups” of people which you have “friended” already ?
So first “friend” with people, then put them in your different Friend-Groups like “family”, “customer”, “employee”, “girlfriends” (which might be set to be a hidden Group), etc.
December 23, 2009 at 8:55 pm #59447In reply to: Enterprise Buddypress
Leah
ParticipantTo get back to start there is an excellet initiative from D Cartwright with Group Wiki Plugin
As for document management; any glue on google docs?
Not very management but Etherpad is nice. Also just open sourced.
December 23, 2009 at 8:37 pm #59446In reply to: Friends and Groups for BuddyPress 1.3
Boone Gorges
KeymasterI think a lot of what Mike says is quite sensible, but my impression, reading what JJJ posted above and at the trac ticket, is that there would be next to no change in the way that the friend relationship works from the user point of view. Viewing a list of my friends, for instance, would be the same as it currently is. The difference is behind the scenes: the friend list is really the member list of a special kind of group (where ‘special’ entails private, stripped down, etc). While it might technically be true that, for instance, Mike’s friends would be a member of the “Mike Pratt” group, that’s not how it would be represented on the front-end of BP.
From a developer’s point of view I very much like the idea of merging components where possible, both to streamline the core BP code and to make extension easier to do.
A small thought about how it’d have to work. Currently if A requests membership in a private group, an entry is written to bp_groups_members = 0. When the group admin B approves membership, it changes to 1. If the current symmetrical model of friendship maps onto group membership, the second step – admin approval by B of A’s friendship request – will have to write another entry to bp_groups_members, this one making B a confirmed member of A’s friend group.
December 23, 2009 at 8:08 pm #59444In reply to: Friends and Groups for BuddyPress 1.3
peterverkooijen
ParticipantHoeveel Nederlanders zijn er in de Buddypress community…?
December 23, 2009 at 7:51 pm #59441In reply to: Friends and Groups for BuddyPress 1.3
Bowe
ParticipantAlso I would like to add that I agree with Mike about what Groups should be and Friends should be… Well said Mike
December 23, 2009 at 7:43 pm #59440In reply to: Friends and Groups for BuddyPress 1.3
Bowe
ParticipantHi everyone,
I made a mock-up of how I picture this “friend” page.. Actually a better name for it would be “My Network” or simply “Home”
The screenshot can be viewed here: http://www.bp-tricks.com/wp-content/uploads/my_friendsv1.jpg
The design is my own, but the functionality could be used for the new BP theme as well:
Left: The activity stream as we all know it from the upcoming BP 1.2. Added the options to filter activity based on “Friend Categories”. This works with a vertical dropdown menu so if a user has many friend categories you won’t run out of horizontal space. It would be cool if the same could be done with Groups. So you can not only show activity from all groups but also from specific groups. This would make the activity stream even better imo! In the example I added a custom filter which could be added by a Twitter plugin. It allows the user to filter the Tweets from their friends!
The right side is filled with boxes which display useful information for the user. It shows:
– Quick Links: Links to pages which might get used a lot. Users can add their own links to pages they visit often.
– Friend Categories: Show the 5 most recent friends from every category
– Groups: The groups a member is part of and an options to show all their groups
– Custom boxes: these are boxes that are added by the users or by plugins. See it as widgets but then for an individual user. In my example I’ve made two widgets:
A quick tweet widget: Allows a user to send a tweet to twitter easily
An RSS widget: The user fills in one (or more) RSS feeds which get displayed in the widget.
Personally I think this would be a great step forward for BuddyPress profiles. If there would be a “Profile API” similar to the current group API, which allows developers to easily integrate widgets or activity stream filters for their plugins, it would be really great! Some other examples could be:
Quick Photo uploads (quickly add photos to your album from your “Home”)
Submit link (BP-Links widget to quickly submit a link)
It would be even better if users could also drag and drop the widgets to their liking. I’m interested in what others think of my mock-up, and the way I think the Stream/Friend Categories should be handled.
December 23, 2009 at 7:25 pm #59438In reply to: Blog sidebar widgets showing up in profile
Paul Wong-Gibbs
KeymasterProbably just not compatible with the current version of BuddyPress. Try contacting the author and see if they plan to update.
December 23, 2009 at 7:14 pm #59434Paul Wong-Gibbs
KeymasterProbably your plugin is getting loaded before BuddyPress is.
I’m not even sure this code works as it should, but try adding this (renaming the function of course):
/* Check that BuddyPress is loaded before Achievements */
function dpa_load_buddypress() {
if ( function_exists( 'bp_core_setup_globals' ) )
return true;
/* Get the list of active sitewide plugins */
$active_sitewide_plugins = maybe_unserialize( get_site_option( 'active_sitewide_plugins' ) );
if ( !isset( $active_sidewide_plugins['buddypress/bp-loader.php'] ) )
return false;
if ( isset( $active_sidewide_plugins['buddypress/bp-loader.php'] ) && !function_exists( 'bp_core_setup_globals' ) ) {
require_once( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
return true;
}
return false;
}
add_action( 'plugins_loaded', 'dpa_load_buddypress', 11 );December 23, 2009 at 7:07 pm #59435zeitweise
ParticipantI know what caused the error now: My webhoster did not support mod_rewrite. This however, has to be turned on since there is no option to turn off permalinks in buddypress, or is there?
December 23, 2009 at 6:57 pm #59433In reply to: Friends and Groups for BuddyPress 1.3
abcde666
Participanttotally agree with you.
especially:
“What BP needs, I think, is expanded friend functionality. Ie friend grouping a la facebook style so I can filter my ever growing list of friends into like groupings e.g. Family, etc.”
being able to do mass-mailing based on different “Groups of Friends” (different mail for Family, company, best friends, etc.).
December 23, 2009 at 6:56 pm #59432In reply to: Blog sidebar widgets showing up in profile
pcwriter
ParticipantHi Paul,
Yup, I think Achievements is a fun and helpful addition for new users.
As for the problem, I first resolved the one described in this post: https://buddypress.org/forums/topic/wireclub-chat-plugin-screwed-up-my-site (also thanks to your help!).
Now I’ll try to fix this one… and the fun continues!
December 23, 2009 at 6:55 pm #59431In reply to: Wireclub chat plugin screwed up my site
pcwriter
ParticipantHot diggety!!
Paul, you’re a genius… it worked! And I never would have thunk of that fix.
Thanks!
Oh, and thanks for checking out this post too: https://buddypress.org/forums/topic/blog-sidebar-widgets-showing-up-in-profile
December 23, 2009 at 6:27 pm #59426Paul Wong-Gibbs
Keymaster*IF* the error is the memory one, have a look at https://buddypress.org/forums/topic/500-errors-1and1-webhost#post-29415
December 23, 2009 at 6:24 pm #59425In reply to: Blog sidebar widgets showing up in profile
Paul Wong-Gibbs
KeymasterJust tried to look but I’m getting a totally blank page. Guess you’re trying stuff.
When you say “any plugin”, which plugins specifically are you referring to? It is possible they out are of date and incompatible with the current release of BuddyPress. The trick to find out is to disable all plugins other than BuddyPress itself, and use the default (unedited) BuddyPress theme, and test your site. If you are still getting this sort of problem, then it’s either a BuddyPress bug or something specific to your setup.
If the problem is only recreated when a plugin is re-activated, then you need to contact the author of that plugin and ask when it will be updated to work with the current version of BuddyPress.
Also, thank you for trying Achievements
December 23, 2009 at 6:20 pm #59424In reply to: bp-events, directory not working
Paul Wong-Gibbs
KeymasterThat refers to moving the current backwards compatibilty code OUT of the main BuddyPress plugin and moving it to a new, optional plugin (“BuddyPress Legacy”, or something). It won’t be any new code than what there is in the current release.
December 23, 2009 at 6:14 pm #59423In reply to: upgrading from trac
Paul Wong-Gibbs
KeymasterI want to say “1.2 doesn’t contain any database changes”, but then John’s going to pop in and say something has (probably the activity tables if any). If you are asking will the current trunk version database schema change when 1.2, I doubt it. I think Andy said he’s code-freezing BuddyPress 1.2 at the end of December to allow about a few week’s worth of testing.
Being close to the release of 1.2 (close to a beta, anyway), I’d suggest using 1.1.3 for now. Everything should upgrade easy to 1.2 when that is released.
December 23, 2009 at 5:43 pm #59422peterverkooijen
ParticipantIt doesn’t look like Buddypress would be the most suitable script to develop a site like that. Zillow is an interface on a bunch of databases for homes, agents, lenders, etc. You’d have to adapt the users and post tables in WordPress, which aren’t very flexible…, or develop something around it.
Are there any open source PHP scripts more suitable for this kind of site? Can’t think of any.
December 23, 2009 at 5:27 pm #59418In reply to: Friends and Groups for BuddyPress 1.3
MrMaz
ParticipantThank you Mike Pratt for doing all my typing for me. +1
December 23, 2009 at 5:26 pm #59417In reply to: Friends and Groups for BuddyPress 1.3
Michael Berra
ParticipantMaybe this is a little off topic, but it’s about something mike mentioned. I think the development goes with 1.2 already in the right directions. I like almost everything about it. But some things are really missing. For example the mass-messaging in a group. I think it was a crucial option for the groups (and right now it is the backbone of our groups!!!) and now it’s gone… (is there any thought of bringing a funvtion like that back?)
I many points I agree totally with mike.
December 23, 2009 at 5:12 pm #59415In reply to: bp-events, directory not working
@mercime
ParticipantThere may be hope yet. Not to put any pressure on Andy
– his response in testbp.org forum re white screens rendered by plugins using deprecated code, “I’ll be supplying a backwards compatibility plugin” Reference
December 23, 2009 at 4:48 pm #59412In reply to: Friends and Groups for BuddyPress 1.3
Mike Pratt
ParticipantI am personally not a fan of taking it this direction (with a few caveats depending on where it goes)
@Peter – Yes, Facebook burned “friending” into the lexicon and made a mess of things as far as that definition goes. But it’s here and it’s what we have to work with. Not sure it would be wise to try and break the momentum 300mm users already understand. Now, expanding on the idea is another thing altogether.
We should start with what a “friend” means/should mean in the BP environment. There is overlap of the concept with Groups, but a major distinction, too that keeps me from supporting this shift you describe. If we expand the friend concept in its current manifestation, I think we’ll be better off.
Yes, @jjj friends are just groups of users. But that doesn’t make them Groups. Groups are organizations around a topic/idea. I think if you try to include an aggregation of users into that model, you will blur the lines as to confuse everyone. Since I don’t want being a friend of me being the same as being a member of the “Mike Pratt” group, you will force developers to have to change everything to make it look like the old process, or do it yourself. Is there really that much gained by you in the process? I mean, so much of the group functionality may not be necessary in a personal group.
Re the “it’s like Twitter following” it’s not either/or there. “friending” requires acceptance on the befriended’s part. Following does not. Admittedly, it would be great for BP to allow for a following kind of capability so I can keep tabs on those whose activity I care about but aren’t really “friends” with.
What is the filtering issue you speak of? On 1.2 I can look at activity of My friends or My groups and it works great. What BP needs, I think, is expanded friend functionality. Ie friend grouping a la facebook style so I can filter my ever growing list of friends into like groupings e.g. Family, etc. I’d even do it on buddypress.org and list @jjj @andy @jeffsayre etc into a group to follow what the sage’s all have to say. In this new concept, I will have to create a group for them? but they will already be in my “friends” group?
One thing to consider – the new Update functionality, in effect, already gives each user his own forum. A threaded conversation can already happen there and it’s centered on that user. If you are truing to make it a private one, then revamp the message system to allow me to send a private internal BP message to a group of friends (need that part too) and have it be a private threaded conversation/message. It’s dangerous to allow me to make it like you suggested
“Not only is it a group of people that I know, the people I’ve added to that group now can talk back and forth to one another because I’ve added them as a “friend.”
It gives the ability for someone to interact more personally with someone to whom they never initiated contact. Perhaps just adding a friend “type” ie “follow” would be very useful. It is the type that doesn’t require acceptance on the followee and the followee’s activities are visible according to their own set terms.
In summary, I think we keep Groups as topically focused “clubs” or “associations” that have members, content and activities and then each person has relationships with other users on the site. Some are “friends”, some they just “follow” with added functionality like grouping (pardon the use of the word), mass messaging (based on permissioning), etc
December 23, 2009 at 4:37 pm #59411In reply to: Friends and Groups for BuddyPress 1.3
Bowe
ParticipantAfter some thought I kinda like the idea of giving friends a central place to talk just like a regular group. Here are my thoughts:
I think it could work very well and some group-like functions should be added to the My Friends/My Network idea proposed here.
but I also think the “My Friends” should be more limited then a regular group and would serve a different purpose then a regular group. A regular groups allows for more in-depth user interaction which is also viewable for the general audience of your community, while the My Friends section should be a quick way to interact with all your friends and to filter new stuff based on your friend types (familiy, work, regular friends). It does not need to have a discussion forum, I think it’s main focus should be a “friends” activity stream + extension possibilities trough a Friend API (based on a group API)
The way I see it the “My Friends” page should be an overview of all your friends activity and let you filter content just like the activity stream. I am working on a screenshot to visualize my vision
. Hope to have it finished today!I really like the idea to filter your friends by category, and for instance show only the activity of my family members. I also like the idea extending “My Friends” by showing Tweets from my friends etcetera.
think that this is important because Groups are meant to
December 23, 2009 at 4:24 pm #59410In reply to: Enterprise Buddypress
peterverkooijen
Participant@Bowe, I’d posted my solutions here and in a whole series of threads. I can’t solve the issue though. It depends on core architectural decisions.
December 23, 2009 at 3:44 pm #59408In reply to: Enterprise Buddypress
Bowe
ParticipantMaybe it would be a very good idea to share that knowledge Peter instead of telling us how bad it currently is.. You could write a tutorial for other users who run into the same problem as you, or maybe it can be added to the core in a next release?
December 23, 2009 at 3:36 pm #59407In reply to: Remove Blog from Search Bar
Brajesh Singh
ParticipantOk,here is the solution.
This will sllow user to search for the blog posts on the main site only.
I have used two hooks to accomplish the purpose.
put this code in either bp-custom.php or in functions.php of your current theme. No core modification is required.
//filter the allowed search type
add_filter("bp_search_form_type_select","bpdev_allowed_search_type");
function bpdev_allowed_search_type($selecttion_box_old){
//ignore the selection box
$selection_box = '<select name="search-which" id="search-which" style="width: auto">';
if ( function_exists( 'xprofile_install' ) ) {
$selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>';
}
if ( function_exists( 'groups_install' ) ) {
$selection_box .= '<option value="groups">' . __( 'Groups', 'buddypress' ) . '</option>';
}
if ( function_exists( 'bp_forums_setup' ) && !(int) get_site_option( 'bp-disable-forum-directory' ) ) {
$selection_box .= '<option value="forums">' . __( 'Forums', 'buddypress' ) . '</option>';
}
//here we modify the thing to a new type posts
$selection_box .= '<option value="posts">' . __( 'Blog', 'buddypress' ) . '</option>';
$selection_box .= '</select>';
return $selection_box;
}
//let us filter the search action urls
add_filter("bp_core_search_site","bpdev_filter_search_url");
function bpdev_filter_search_url($search_url){
//if user is searching for main site content, modify url else return url
$search_terms = $_POST['search-terms'];
$search_which = $_POST['search-which'];
if($search_which=
"posts")
$search_url=site_url( "?s=". urlencode($search_terms) );
return $search_url;
} -
AuthorSearch Results