Here my BuddyPress Developers’ Community http://buddypressdev.org/ 
I hope it will be usefull
So, i’ve said it to some people interested on irc. So, i can do this plug-in, but for doing it, i decide to attend next version of buddypress because in that, andy will put photo album feature, so doing a video feature, will be easier..
I will update users about my and other plugin via this site http://buddypressdev.org/
I think you should post it also in http://buddypressdev.org/forums/ (a BuddyPress Community for developers)
i’d try reinstalling everything first…i am not seeing any of these issues on my site so must be something to do with your setup
also check the permissions on the buddypress components
my users have no role. the blog they create when they open a account or after they open when they create a new blog it still shows page not found errors when viewing the blog or trying to edit it in any way. I dont want them to be admins at all i just dont understand why buddypress keeps attaching my name to every account i make. The information i also input when making a new member is useless as it is never saved. and must be redid in edit profile.
I would be interested in this as well. I have figured out how to expand the settings on BuddyPress profile pages. It would be great to allow users of BP to actually go into “settings” (because profile is public), edit their social settings, and then display the feeds on a seperate BuddyPress page, widget, or (even better IMO) a new BuddyPress component. I just posted about this in the forum a few minutes ago.
I wrote I very brief post on my blog about this. Due to formatting reasons, I can’t copy and paste the whole thing here but you can take a look if you are a somewhat experienced PHP coder and interested in expanding BuddyPress’s settings for profile users.
http://www.davidbisset.com/2008/12/23/buddypress-expanding-settings-menu/
I’m doing this to try to add a “Social” networking panel where a user can add all their information on what social networks they are on. This is the beginning of a custom lifestream or social networking integration for BuddyPress.
(BTW: I have also learned how to add additional public pages to BuddyPress profiles but can’t seem to access the values that are created in the wp_usermeta table mentioned in the above example. Anyone that can provide any assistance I would greatly appreciate it – I can show everyone how i’ve created a simple BuddyPress module/component. In fact, it might be my next blog post).
Are you using your own theme or the buddypress-home theme?
So say you have a plugin that displays a twitter feed given a username. You want ALL profile pages in BuddyPress to automatically show this. I would think this would be a WPMU plugin, but i wanted to confirm. I managed to create additional profile pages in my BP test install (and even additional setting screens) but can’t get plugins to work on the pages I have created. Thinking it might have to do with where the plugin are installed.
Hi All
I have installed mu and Buddypress at Cornwall Face. It seems to be working fine – I’ll see if I can get some mates to try it out. However, what comes next please? By that I mean all seems fine, so can I launch the site. Should I wait for more functionality – a gallery. Is there other things I can add to give it a more facebook approach? How do folks communicate – is there a wall or inbox type system that allows them to write to each other?
Thanks
Rich
In buddypress-home > css, rename the custom-sample.css as custom.css.
Then add these lines to it and save:
body {
background:#000000;
color:#FFFFFF;
}
.widget ul.item-list li, .activity-list {
background:#000000;
}
.activity-list li blockquote {
background:#000000;
}
.activity-list {
border:none;
}
Some other thing may need changing, too; I don’t know what you want. All the widget titles have background colors. Also the link color might not be what you want.
For the header fill in your amount of pixels and the name of your logo file (put it in buddypress-home > images).
#header h1 {
background:transparent url(../images/your-logo.gif) no-repeat scroll left top;
height:–px;
width:–px;
}
You’ll have to do the same with buddypress-member > css. Rename custom-sample.css to custom.css and add the header bit, as well as any color changes.
Who knows what else may come up. Post if you need help with anything else.
I highly recommend something like this, especially for signups. Spammers target MU blogs to auto-register and then auto-create/post blogs.
I go into my wp-admin and view plugins but none of the plugins are there for buddypress…
domain.com/wp-admin – then I go Plugins and then this comes up…
I have everything in /www/wp-content/mu-plugins/
What am I doing wrong?? (BTW Site comes up fine…)
Plugin Management
Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.
You do not appear to have any plugins available at this time.
If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the wp-content/plugins directory and it will be automatically deactivated.
It’s not my plugin, but I’ve tested it and it works fine with BuddyPress /register page
You’ll find it at http://wordpress.org/extend/plugins/wp-recaptcha/
I had also made mine a two column theme… extending the left column stretching across to the right one. Getting rid of the middle one. Got a few issues in IE with the top margin, should be an easy fix…but i’ll let you know.
Howdy, the area I think you are talking about is the default form when you view a member’s profile right? ‘me’ > profile > public. The template that generates that screen is in /member-themes/buddypress-member/profile/index.php
You’ll see the calls to generate all the sections on that page. One of them is the wire. Line 47:
<?php bp_wire_get_post_list( bp_current_user_id()… and so on …
You were gonna make a copy of the theme, make whatever changes you need to run a custom bp member theme and edit that one right?
I think it’s in the bp rules and code of conduct. I’ll have to check.
fishbowl81
This is pretty much what I’d tried, although I’d forgotten about the custom.css file idea. I may have figured it out.
Thx
There are 2 things you need to change, 1 in custom.css, 1 in home.php in the buddypress-home theme folder (and /css folder)
remove lines 14 to 25 (or comment out) of home.php
`<div id=”center-column”>
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar(‘center-column’) ) : ?>
<div class=”widget-error”>
Please log in and /wp-admin/widgets.php?s=&show=&sidebar=sidebar-2″>add widgets to this column.
</div>
<?php endif; ?>
</div>`
This will remove the center column from the layout.
Next you need to adjust the css right margin of #left-column
#left-column {
margin-right: 280px;
}
Also you could adjust the body width, with this addition to your custom.css
body {
max-width: 1100px;
}
Hope That Helps,
Brad
http://www.gorgeousgamers.com/beta/
I’ve played around with making the Buddypress theme 2-column (and not as wide on the page) but it goes screwy in IE. Can anyone suggest a few creative edits in the style.css file that will trim the width of the theme to accommodate just two columns (2 columns of widgets versus 3).
Cheers!
I wanted to removed “Create a Blog!” from of the buddypress admin bar.
This is what I got to work:
wp-content/mu-plugins/bp-core/bp-core-adminbar.php
$blogscheck = get_blogs_of_user($current_user->ID);
if ( ! empty($blogscheck)
{
echo '<a href="' . $bp['loggedin_domain'] . $bp['blogs']['slug'] . '/create-a-blog">' . __("Create a Blog!", 'buddypress') . '</a>';
}
Didn’t see your post nicolagreco. Posting around the same time 
@wardeh Missed that part. I would imagine that Andy will eventually do something with forums, but priority now is getting 1st release out. I have a ticket for forum activity in sitewide feed as well at:
https://trac.buddypress.org/ticket/241
if i were you, i wont use widget in this case. i would create a loop to show last post
(i use prologue theme too on one of my buddypress installation, and i highly hacked that theme!!)
https://trac.buddypress.org/ticket/261
Known issue that even happens on testbp.org. Andy knows about it, so it should be fixed here pretty soon
Trent
can you develope in php?
if yes, you could develope a php script that add an action : when a user post someting, it has to be stored in the db,
or searching for a function in bbpress documentation that shows last articles..
i believe that if you knows a bit of php you can do the second one..
Tomorrow i will open http://buddypressdev.org forums and there i will post some lines, if i can with time!