Search Results for 'buddypress'
-
AuthorSearch Results
-
January 19, 2010 at 12:21 pm #61100
In reply to: BuddyPress General Settings>Select Themes>Missing?
5720378
InactiveHi please help thie BP noob

I’m testing BP with view to upgrade site to this.
The theme works on the main page: http://cre8radiofm.net/v2/
but! http://cre8radiofm.net/v2/blogs and you see what happens.
The theme totally disappears! This is just a standard installation as described in the set up guide, what am I missing here?
Thanks for your help
January 19, 2010 at 11:50 am #61099In reply to: How to change "username" to "email-address" ?
osasko
ParticipantThanks guys!
Brajesh’s way is probably easier , but I suppose I will have to change it everytime Buddypress updates.
So I think I will try creating a child theme. Not really that knowledgeable , but will give it a try.
Cheers
January 19, 2010 at 11:09 am #61098In reply to: Red/Green light feature on bbpress
Paul Wong-Gibbs
KeymasterTo use bbPress plugins, you need a seperate bbPress install, not the integrated sort installed by BuddyPress.
January 19, 2010 at 11:05 am #61097In reply to: Getting started with bbpress
crsneil
ParticipantI think we’re kind of in the same boat – and the help I was given in another thread was that for THAT kind of control, you need to disable bbpress within BuddyPress and do bbpress as its own, separate install.
Of course, if I’m off on that, someone will likely pounce in short order.
January 19, 2010 at 10:56 am #61096In reply to: Group Wiki Plugin (not a release, but in progress)
D Cartwright
ParticipantHi everyone.
Just thought I’d give people a heads-up (in the hope of getting some testers) and let you know that we should hopefully have a demo site for people to play with by Friday this week. I then hope to have a beta version of the plugin available to some people on here a week or two after that.
I’ve posted a rather rambling update in reply to David Lewis here:
https://buddypress.org/forums/topic/message-all-group-members
There’s a few images of how the site is working at the moment and some details on the state of development.
January 19, 2010 at 10:46 am #61095In reply to: Red/Green light feature on bbpress
nig3d
Participantthanks for the answer!
I use the internal one, do I need then to install an external one to use the plugin?
Even though, I use the forum only through the buddypress groups, will be the support forum visualization enabled under buddypress group forums?
Thank you very much.
January 19, 2010 at 10:25 am #61093In reply to: bp-events translation ?
me
Participanthave you a PO files oin buddypress for translate to Other Languages?
How can I translate to another language
January 19, 2010 at 10:04 am #61090crsneil
ParticipantBrilliant.
Thank you SO much.
Will try that right now, and beg for a rescue if I need one.
January 19, 2010 at 10:01 am #61089Xevo
ParticipantDon’t use the bbpress inside buddypress and install bbpress stand-alone, so install it seperate and make it deep integration.
January 19, 2010 at 4:41 am #61070In reply to: MU 2.9.1 Upgrade … What broke?
peterverkooijen
ParticipantI get this error with the BuddyPress Group Twitter plugin in BP 1.1.3 + WPMU 2.9.1:
Fatal error: Class ‘BP_Group_Extension’ not found in /public_html/mysite/wp-content/plugins/buddypress-group-twitter/bp-group-twitter.php on line 15
Could M’s solution fix this plugin? Has anyone applied that yet?
January 19, 2010 at 3:16 am #61068In reply to: New BP Chat plugin for Buddypress
Mark
ParticipantAll I need is reasonable WP 3.0 *ALPHA* code and good BP 1.2 code. That’s it.
We aren’t there yet.
Not knocking the code, just sayin’… it’s needs a little more work.
January 19, 2010 at 3:13 am #61067In reply to: New BP Chat plugin for Buddypress
r-a-y
KeymasterIsn’t WP 3.0 due near July or later?
So basically we’re going to be waiting until the latter part of 2010, then?

If you’re just waiting for BP 1.2, then we could definitely see an earlier release!
January 19, 2010 at 3:10 am #61066In reply to: MU 2.9.1 Upgrade … What broke?
r-a-y
KeymasterIt was JJJ that posted it:
https://buddypress.org/forums/topic/how-to-make-your-plugin-buddypress-12-aware
January 19, 2010 at 3:08 am #61065In reply to: New BP Chat plugin for Buddypress
Mark
ParticipantHere’s the scoop. First of all, BP 1.2 is gonna break a lot of plugin code based on what I’ve seen to date. So I’m not really in a rush to finish BP Chat or BP Twitter until two essential things happen:
1. The upcoming WordPress 3.0 (due in March 2010) is in a reasonable state of Alpha release so that the code base merge of WP and WPMU is good enough for cross-platform developers to actually get busy with modifying their own plugins to work properly.
2. BuddyPress 1.2 gets close to final beta.
When those 2 things happen I will finish both plugins. But that isn’t happening yet. WP devs have only just released a basic WP/WPMU merge over the weekend (Jan 18). I have it installed. I can’t work with it to develop stuff for BP. Too much is still missing. As for BP, 1.2 is coming along. I also have that installed, but there are some bugs that create significant hurdles.
That said, my BP Twitter plugin is essentially done, but some of the code is gonna break in BP 1.2, so I’ll have to fix it before it’s released. BP Chat is basically done in terms of one-to-one chat too, but again, I’m waiting for items 1 and 2 above before I release it because I will definitely have to change the code to work right.
Group chat is gonna have to wait a bit longer. Some of you have had a chance to demo group my chat. It’s cool stuff, it works, but it needs more work, and there’s no sense working to finish it when I know full well that I’ll have to mod the code significantly to work in BP 1.2.
Hang tight folks. I know it’s been a while, but I will release some stuff as soon as technically possible.
And if you’re overly impatient or have mission critical immediate needs, go with something that is already out there, or hire a pro to build you a solution
January 19, 2010 at 2:11 am #61063In reply to: MU 2.9.1 Upgrade … What broke?
dpolant
ParticipantTry putting something like this at the beginning of the plugin: (not tested for all cases but worked for me). What screws up groups API is when BP gets loaded after the plugin and your plugin can’t find the class its supposed to extend. I have no idea why wpmu 2.9.1 brings out this issue.
function load_buddypress() {
//buddypress is loaded
if ( function_exists( 'bp_core_setup_globals' ) )
return false;
// Get the list of active sitewide plugins
$active_sitewide_plugins = maybe_unserialize( get_site_option( 'active_sitewide_plugins' ) );
$bp_activated = $active_sitewide_plugins['buddypress/bp-loader.php'];
//bp is not activated
if ( !$bp_activated ){
return false;
}
//bp is activated but not yet loaded
if ( $bp_activated ) {
return true;
}
return false;
}
//load bp if its activated and not loaded
if ( load_buddypress() ){
require_once( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
}This made it work one of my plugins. It basically forces BP to load at the beginning of your plugin. And something in WP prevents it from loading twice if it does this.
January 19, 2010 at 1:52 am #61062In reply to: Broken delete buttons in 1.1.3
m@rk
ParticipantI have to confirm this issue on my site.
Did you already recognize the other thread Activity Stream bug?
January 18, 2010 at 11:18 pm #61056nig3d
Participant1. Which version of WPMU are you running? 2.8.6
2. Did you install WPMU as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? subdirectory
4. Did you upgraded from a previous version of WPMU? If so, from which version? Maybe

5. Was WPMU functioning properly before installing/upgrading BuddyPress? I Assume so
6. Which version of BuddyPress (BP) are you running? latest
7. Did you upgraded from a previous version of BP? If so, from which version? yes, the previous one
8. Do you have any plugins other than BuddyPress installed and activated? nope
9. Are you using the standard BuddyPress themes or customized themes? standard
10. Have you modified the core files in any way? I have installed the italian translation
11. Do you have any custom functions in bp-custom.php? $bb->bb_xmlrpc_allow_user_switching = true; Is it still needed? Plus italian translation
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? built-in
January 18, 2010 at 11:14 pm #61055nig3d
Participanthello, I’m back.
The admin enabled the error report on the server and the real error is:
Warning: Cannot modify header information – headers already sent by (output started at /var/www/GPI4/buddypress/bb-config.php:80) in /var/www/GPI4/buddypress/wp-includes/pluggable.php on line 865
know you should have enough clue to lend me an hand
January 18, 2010 at 10:51 pm #61053In reply to: BP 1.2 : \"bp_filter_request is not defined\"
grosbouff
ParticipantJanuary 18, 2010 at 10:50 pm #61052In reply to: buddypress = Content Aggregator
tinus2
Participant@mrmaz, concerning wpplugins.com, i think 10% is quite a reasonable cut considering that it will also give you added exposure.
January 18, 2010 at 6:50 pm #61040kino.tv
MemberYESSSSSSSS! Thanks!
Step 1):
bp-core-widgets.php:
====================================
function widget($args, $instance) {
global $bp;
extract( $args );
echo $before_widget;
echo $before_title
. $widget_name
. $after_title; ?>
<?php if ( bp_has_members( ‘type=active&per_page=’ . $instance[‘max_members’] . ‘&max=’ . $instance[‘max_members’] . ‘&populate_extras=0’ ) ) : ?>
<div class=”avatar-block”>
<?php while ( bp_members() ) : bp_the_member(); ?>
<!– agunda kill leerbilder start //–>
<?php
ob_start();
bp_member_avatar();
$avatar = ob_get_contents();
ob_end_clean();
if (strpos($avatar,’/uploads/avatars/’))
{
?>
<div class=”item-avatar”>
</div>
<?php
}
?>
<!– agunda kill leerbilder ende //–>
<?php endwhile; ?>
</div>
<?php else: ?>
<div class=”widget-error”>
<?php _e( ‘There are no recently active members’, ‘buddypress’ ) ?>
</div>
<?php endif; ?>
<?php echo $after_widget; ?>
<?php
}
=============================================
Step 2:
Set Widget “active members” to 10, 50, 1000
Thanks!!
January 18, 2010 at 4:28 pm #61032In reply to: Broken delete buttons in 1.1.3
peterverkooijen
ParticipantI’ve worked on another Ajax problem here. The delete buttons is probably something similar. I’ll have to go through the code in _inc/js/ajax.js when I have time again – assuming the delete button code is there as well.
January 18, 2010 at 4:10 pm #61029In reply to: [privacy component] extend to my own component
Jeff Sayre
ParticipantGrosbouff-
I’m currently working on updating my BuddyPress Privacy Component to work with BP v1.2. I expect to have a new release in about two weeks. I will not release it before BP 1.2 is tagged. There are still a number of changes being made to the BP core codebase, so I need to wait until the dust has settled to see what additional modifications are required in my plugin.
I plan on providing better documentation–a users’ guide, an site admin guide, and some information on extending components to hook into the privacy filtering functions. So, if you wait a couple of weeks, this information should be available.
January 18, 2010 at 2:57 pm #61025In reply to: Advertisement
Xevo
ParticipantThat’s why you could try one of the wordpress plugins, some of them make it really easy to add all kinds of advertisements to your wordpress set-up. The only problems will be; version of wordpress (buddypress 1.1.3 only works on 2.8.x), buddypress itself and theming.
Just need to do some trial and error with some of the plugins.
Try this: https://wordpress.org/extend/plugins/advertising-manager/
January 18, 2010 at 2:33 pm #61021In reply to: Advertisement
Xevo
ParticipantNo plugins for buddypress specifically yet, though you can try one of the wordpress advert plugins. Or don’t use a plugin at all and just code it directly into your buddypress template.
-
AuthorSearch Results