Search Results for 'buddypress'
-
AuthorSearch Results
-
January 4, 2010 at 10:17 am #59975
In reply to: Theme Design Cost ?
takuya
ParticipantConsider the cost for wordpress themes, as buddypress themes are wordpress themes. There are thousands of wordpress theme players around the world. Quick search on Google should give you some quotes.
You may need to add bit more ($100 – $500) to the quote you get for thanking designers to work for wordpress themes for buddypress.
January 4, 2010 at 6:39 am #59972In reply to: Friends and Groups for BuddyPress 1.3
stwc
Participant20,000-foot thought here, but possibly germane.
I’ve been thinking as I’ve gotten from ankles- to knees- to nipples-deep in Buddypress is that there may be a little fuzziness conceptually (or perhaps it’s just my own lack of understanding and need to hammer things down, mentally) around some stuff at the highest level as BP has evolved.
What I mean is something like this: forums and groups seem commingled in a way that is pretty darned counterintuitive, I think, for most users accustomed to traditional forums structure or to social networky ways of doing things. This is not entirely to the bad — I’m not suggesting that — but I think it confuses people who are not ‘techy’. This initial confuzzlement means a lot of people give up without trying to figure out the Buddypress Way, which is a Bad Thing. For my part, as someone who’s highly technical and been working on and off in designing user experience stuff for decades, even me, if a site doesn’t present its ‘expected’ interaction mode after a few seconds, I’ll probably give up and go elsewhere. Little things like a lack of an easily found search box will have me closing a site tab, my patience level is so low — I think that ordinary users tend to be a little lost in the groups/forums melange of Buddypress, sensible as it may seem to those of us who are building the sites, and just give up and go back their Facespaces and Mybooks.
Part of the issue I’m describing badly probably comes from the bolt-on and eventually plugged-in nature of BBpress as part of Buddypress, but I also think it might have been a bit of a result of not starting from top down, boring old use-casey thinking. I could be wrong there, of course, it could just be me, and no offense to Andy or anyone else meant by saying it. It just seems a little… wrong to me, a bit, thinking as a user.
So, finally, about this latest idea and thread: there seems to me, as part of the shift in 1.3, to be a changing conceptual focus. That is, we are directing the focus of users from other individuals, other users on the site (as ‘objects’), to the activity of those individuals, as the engine of interaction, if you will. ‘Following’ activity and so on. Now there’s nothing wrong with that, and I actually feel it’s a very good idea, because engaging users and keeping them actively using a site and interacting with others is what it’s all about, and Facebook, like it or love it, understands that perfectly.
But there are downstream consequences of activity (actions) being the focus of site use as opposed to, for lack of a better word, objects (people, groups).
I’d just like to hold up a hand and say that considering what those consequences might be is a wise thing, I think, if only to avoid a kind of frankenstein’s monster situation, with different conceptual drivers for user engagement ruling over different parts of the app, and further stirring up cognitive dissonance in already-possibly-bewildered users.
OK, that’s enough words now.
January 4, 2010 at 6:26 am #59971In reply to: New BuddyPress Geo plugin
shaisimchi
ParticipantHi,
I would appreciate some help.
I have installed buddypress geo but i cannot run the indexing process as the link in the admin page for the geo plugin does nothing – can someone please help?
Thanks,
Shai
January 4, 2010 at 6:25 am #59970In reply to: BuddyPress Geo plugin
shaisimchi
ParticipantHi,
I would appreciate some help.
I have installed buddypress geo but i cannot run the indexing process as the link in the admin page for the geo plugin does nothing – can someone please help?
Thanks,
Shai
January 4, 2010 at 1:33 am #59968swingJazz (Jimmy Saputra)
ParticipantI deeply apologize if my previous post is a spam.
I only followed BuddyPress Documentation in Improving Performance, and showed how it works with my websites.
I found that the article is very-very useful (for server’s performance and users’ access). So, I want to share my experience in this forum to other BuddyPress lovers.
Please forgive me if my previous post is a spam. Do I have to delete it?
January 3, 2010 at 11:36 pm #59964In reply to: Friends and Groups for BuddyPress 1.3
designodyssey
ParticipantI’m very late to this party, but since I’ll be developing when 1.3 comes out, here’s my two pennies.
I believe the modularity and CMS capabilities of WP/BP should be expanded. I think we need the ability to create different “content types,” “user types”. Groups could essentially be a user type. Users are a user type. Tournaments, Classrooms, Camping Trips could all be user types. Differentiation is based on functionality and capabilities. I’d like to see a single API work with user types as I hope WP is moving toward for content types.
Let me decide what a friend can do just as a group. Because “groups” can have multiple distinct members, they require a bit more thought, but other than that it should be the same.
BTW, I would never want users to have their own individual forum, but someone else might and that’s the point.
January 3, 2010 at 8:16 pm #59955Boone Gorges
KeymasterHi Afoka –
Your post reminded me that I had to change this hack a bit in BP 1.1.3. Here are the notes I made for myself at the time. Let me know if they make sense, and if you can make them work:
===
In wp-content/plugins/buddypress/bp-blogs.php:
– function bp_blogs_record_post has two cases, one for new posts and one for edited posts. Change
if ( (int)get_blog_option( $blog_id, 'blog_public' ) ) {to
$is_blog_public = get_blog_option( $blog_id, 'blog_public' ); //added
//if ( (int)get_blog_option( $blog_id, ‘blog_public’ ) ) {
if ( $is_blog_public > 0 ) { // changed to account for More Privacy Optionsin both of the cases.
– functions bp_blogs_record_comment and bp_blogs_approve_comment. Replace
if ( (int)get_blog_option( $recorded_comment->blog_id, 'blog_public' ) ) {with
$is_blog_public = get_blog_option( $recorded_comment->blog_id, 'blog_public' ); //added
//if ( (int)get_blog_option( $recorded_comment→blog_id, ‘blog_public’ ) ) {
if ( $is_blog_public > 0 ) { // changed to account for More Privacy OptionsJanuary 3, 2010 at 7:48 pm #59954Anja Fokker
ParticipantYes I did:
In buddypress/bp-blogs/bp-blogs-classes.php
I repleaced rule nr. 267:
if ( !(int)$wpdb->get_var( $wpdb->prepare( “SELECT DISTINCT public FROM {$wpdb->base_prefix}blogs WHERE blog_id = %d”, $blog_id ) ) )
in
if ( $wpdb->get_var( $wpdb->prepare( “SELECT DISTINCT public FROM {$wpdb->base_prefix}blogs WHERE blog_id = %d”, $blog_id ) ) < 1 )
After that I cleared up in the database manually the table: wp_bp_activity_user_activity_cached
I deleted existing blogs and groups and started again: (don’t fear, this is just a testsite)
Created a new invisible group with a blog.
Blog settings: (with the mu-plugin more privacy options) I only want the blog visible for logged in users and registrated on this blog (or something, I translated it into Dutch).
I created a new blogpost. Then I logged out. After that the first rules of the blogpost are still visible in the activity stream. I can not read the whole blogpost, because I first have to login to the site to see the whole post on that blog.
Maybe I did something wrong with the code?
I’m using WordPressMU 2.8.6 and Buddypress 1.1.3
Thanks for your time you’ll spend to me.
January 3, 2010 at 7:20 pm #59953In reply to: Remove Automatic Links in Profile
Boone Gorges
KeymasterSure, there’s a couple ways to do it.
If you want to turn off linking in specific profile fields (so that nothing in “About Me” gets linked, but locations in “Location” or “Hometown” do), you can use https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/. Near the beginning of that plugin, there’s a spot for you to list fields that should NOT be linkable.
If you want to be more specific and look for certain words in a field, here’s how. Copy the original xprofile_filter_link_profile_data function from bp-xprofile-filters.php, paste it into functions.php or wherever you put the remove_filter code, rename it something unique (like henry_xprofile_filter_link_profile_data), then afterwards add the line
add_filter( 'bp_get_the_profile_field_value', 'henry_xprofile_filter_link_profile_data', 2, 2 );At this point you’ll have to customize the filter to look for certain words. Use something like this (untested, but something like it should work):
if ( strpos( $field_value, 'Boston' ) ) {
$field_value = str_replace( 'Boston', '<a href="' . site_url( BP_MEMBERS_SLUG ) . '/?s=Boston">', $field_value);
}In other words, if ‘Boston’ is found in the field, replace the plaintext ‘Boston’ with a link to a search on the word ‘Boston’.
January 3, 2010 at 3:21 pm #599465603658
InactiveYes, no spam in this category please!
January 3, 2010 at 2:40 pm #59945Boone Gorges
KeymasterI’m not sure how those plugins in particular work, but here’s a solution that worked for me with the plugin More Privacy Options: https://buddypress.org/forums/topic/more-privacy-options-private-blogs-and-activity-streams
The same principle can probably be applied to your case. Figure out how your plugins are recording fine-grained privacy options, and then adjust the code at the above link to match.
January 3, 2010 at 1:02 pm #59943Paul Wong-Gibbs
KeymasterBecause the user account has no friends. I believe this is the same error as per https://trac.buddypress.org/ticket/1511 (though caused in a different way).
January 3, 2010 at 9:17 am #59942In reply to: Using BP with video theme like On Demand?
juandrah
ParticipantWhy not check the WP forum?
So if I install WPMU, then Buddypress, then the On Demand theme, my site members will each have their own video gallery blog, be able to view other members video blogs, and with a little tweaking the main page can be a video gallery of all videos posted by all members (or rather maybe show the most recent postings)?
January 3, 2010 at 6:43 am #59940In reply to: Friends and Groups for BuddyPress 1.3
@mercime
ParticipantWith BuddyPress being used now by/for different interest groups from colleges to niche organizations to purely social networking, etc. there is no doubt that there would be different opinions regarding importance of the friends component vis-a-vis groups component.
I’m surprised in the first place that the friends component could even be considered for deprecation since that’s a popular feature. How about a switch to enable or disable the friends component? In one install, e.g. for a professional organization, they don’t need “friends” and prefer “groups.” In another install, for a social club, they’d like “friends” and “groups.”
It would be great if we see categorization of friends (as Bowe mentioned above) as it makes a lot of sense and extend it so that you could send a message only to Friends-Family or send a message only to Friends-CollegeBuds.
However, should the friends component be deprecated, I would request devs to expand Groups component with a user function to have the ability to privately categorize the people within a Group he/she belongs. e.g. Group-Hiking-Friends, Group-Hiking-Pros, Group-Hiking-CollegeBuds, Group-Hiking-NeedsMoreTraining.
January 3, 2010 at 4:44 am #59938In reply to: Update Your Status button really weird in IE
David Lewis
ParticipantOh wait… I think this is the old inline block issue with the buttons in IE. See this ticket:
January 3, 2010 at 4:39 am #59937In reply to: Update Your Status button really weird in IE
David Lewis
ParticipantWhat version of BuddyPress?
I haven’t even looked at it or looked at any code… but based on your description… I’m guessing that the CSS is using a selector that IE doesn’t understand.
January 3, 2010 at 3:56 am #59936In reply to: Friends and Groups for BuddyPress 1.3
Mike Pratt
Participant@Maz – I may be going out on a limb here, but reading thru all the text here and on trac, I’d be shocked if this proposal went anywhere. There’s nothing remotely close to any kind of support. Great debate, sure, but everyone in favor is really just looking for a twist on the “friends” interpretation…just as you say. My 2 cents.
January 3, 2010 at 3:49 am #59935In reply to: Modified mail message registration
Mike Pratt
ParticipantThe BuddyPress Registration Options is, indeed, a useful plugin. It does not work on 1.2 bleeding but hopefully will be updated
January 3, 2010 at 3:32 am #59934abcde666
Participantyeah, but why do you spam this page ?
January 3, 2010 at 2:32 am #59931swingJazz (Jimmy Saputra)
ParticipantNow is up to 3-times-faster because I have installed this jazz thing modified by Donncha. A salute thanks to this jazz person.
Please feel the different here
January 3, 2010 at 2:28 am #59929swingJazz (Jimmy Saputra)
ParticipantNow is up to 3-times-faster because I have installed this jazz thing modified by Donncha. A salute thanks to this jazz person.
Please feel the different here
January 3, 2010 at 2:26 am #59928In reply to: jazz.or.id – BuddyPress for a Jazz Organization
swingJazz (Jimmy Saputra)
ParticipantNow is up to 3-times-faster because I have installed this jazz thing modified by Donncha. A salute thanks to this jazz person.
Please feel the different here
January 3, 2010 at 2:02 am #59924In reply to: Inbox Widget for BuddyPress
abcde666
Participantwell, just wondering if the “Notifications”-tab at the header-bar would be still required when having this widget within the side-bar ?
January 3, 2010 at 1:36 am #59922In reply to: fullname vs username vs first + last name…
peterverkooijen
ParticipantThis is my pet peeve with Buddypress! Wasted at least two weeks on this issue last Summer.
I use the same Beau Lebens email as login plugin that David Lewis found. So I wanted to get rid of username entirely and have basically only real name and email address on my registration form.
To integrate a mailinglist script I needed separate firstname + lastname. Buddypress doesn’t store them out-of-the-box. This is NOT a WPMU issue; WP/WPMU has firstname + lastname in wp_usermeta, but Buddypress simply refuses to synchronize those fields, so you can’t count on the data being there for other scripts (mailinglist, events, etc.).
Here’s my solution:
How to synchronize firstname+lastname between xprofile field_1 and wp_usermeta upon registration
And
How to autogenerate blogname (url) from Blog Title (or username from fullname!)
The Javascript I use for fullname->username looks like this
function copyinputuser()
{
var tmp = document.getElementById('field_1').value;
tmp = tmp.toLowerCase().replace(/^s+|s+$/g, "").replace(/[_|s]+/g, "");
tmp = tmp.replace(/[^a-z0-9-]+/g, "").replace(/[-]+/g, "").replace(/^-+|-+$/g, "");
document.getElementById('signup_username').value = tmp;
}Unfortunately a lot of people sign up with only one name in the Fullname (field_1) field. Question:
Would anyone know how to validate/check the input for a two-part (minimum) name? You’d probably have to check for a space, make a space required. How would that script look?
No firstname/lastname because this does not work for a lot of international users.
Which countries are you talking about?! Name them.
With all due respect, this is such a bizarre argument. Not only the western world, but India, China, etc. all have no problem whatsoever using two or more names. Countries that use only one name or more than four can write their own plugins, along with the language pack etc.
More than two names is no problem; separating first and last name is primarily about having a first name available. Users can put their other two, three, four names in the second field.
If Facebook, LinkedIn, etc. have no problem requiring separate firstname and lastname, why is this such a controversial issue for Buddypress? Why make life difficult for 80-90 percent of Buddypress users just to prevent offense to 10 percent with different customs?
January 3, 2010 at 12:36 am #59921In reply to: Inbox Widget for BuddyPress
David Carson
ParticipantI’m not sure what you mean. This doesn’t sound related to the Inbox Widget plugin.
Can you please explain?
-
AuthorSearch Results