Search Results for 'buddypress'
-
AuthorSearch Results
-
March 2, 2009 at 5:54 pm #39061
alainhc
Memberburtadsit, there´s no confusion on the proper location of themes. You can try to install the last release of buddypress and wp mu 2.7 and you´ll see the error.
Thanks to jfcarter for giving one solution.
Alain
March 2, 2009 at 5:24 pm #39059In reply to: Who wants a media plugin for BP
Alex
Participant> @brianbrey, How do you know this?
A couple of months ago Zohar Babin said he was interested in helping, https://buddypress.org/forums/topic.php?id=367#post-1647
March 2, 2009 at 4:41 pm #39055Burt Adsit
ParticipantI think there must be some confusion as to the proper location of themes. See:
https://codex.buddypress.org/getting-started/using-the-buddypress-themes/ for an overview.
You shouldn’t have to rename directories if everything is in the right spots.
March 2, 2009 at 4:08 pm #39047In reply to: Where to find custom themes ?!
danielfelice
Participantcheck out http://www.freebuddypressthemes.com
keep an eye on it over the next month or so
March 2, 2009 at 3:33 pm #39041In reply to: Useful BP and non-MU BP feature: list outside blogs
John James Jacoby
KeymasterYou could make a xprofile field that says “Outside Blogs” and they could list them there for now. They wouldn’t link to them yet however, and there’s an enhancement in the trac to allow for different formats of fields that will allow this later.
I suspect however that your goal is to have these blogs show in the “Blogs” area of BuddyPress. I think that’s a novel idea, and I don’t think it would be too difficult to do really, but it means that the blog area needs to be explored more, versus it only being a front end layer for all of WPMU’s blogs.
I think that they best they could be however would be links to outside blogs, and that keeping it within the content of your site would be difficult. (It would require an iFrame most likely, which I suspect most of us try to avoid.)
March 2, 2009 at 3:28 pm #39040In reply to: BBpress not sharing login details
John James Jacoby
KeymasterFirst thing that I had to do was delete all cookies and login to BuddyPress fresh.
Things to double check:
1.) You’ve correctly added the keys in both config files.
2.) You’ve installed and correctly configured both necessary plugins, one on each side.
3.) Check the names of your cookies in Firefox and make sure the wordpress_ cookies all have the same string of text behind them. If not, your keys in your config files are wrong.
4.) You’ve modified both config files with all the little extra things they need done to them.
March 2, 2009 at 3:25 pm #39038In reply to: BuddyPress For WordPress (Not MU) Coming
John James Jacoby
KeymasterAnytime!
jahshaka
Memberis there any info on how to upgrade from a 2.6.x wpmu/buddypress beta 1 install to a 2.7 rc1 install?
ie do i need to disable the buddypress plugins
upgrade wpmu to 2.7
reinstall the plugins?
thanks
March 2, 2009 at 2:43 pm #39036alainhc
MemberHi. I had the same problem with buddypress, and i had to to what jfcarter suggested: duplicating the buddypress-member directory and naming it buddypress-home. But I think must be a better solution. Anyone knows which version of buddypress doesn´t have that problem?
Alain
March 2, 2009 at 2:18 pm #39034In reply to: BuddyPress For WordPress (Not MU) Coming
David Bisset
Participant@johnjamesjacoby – I wanted to say thanks, but i didn’t catch your name. Thanks! And since this was released at WordPressDenver, I figured the cat was out of the bag already. Andy counts on big mouths like you and me.

Back on topic, I am tending to agree a bit with conceptfusion – many at the BarCampMiami were asking about photos. At the same time, having BP for WP is going to accelerate awareness and demand for BP and creation (or adapting) plugins/themes. This is one “con” that BP had to overcome in order to accomplish that “BP will do for social networks what WP did for blogs” speech I did last Sunday.
March 2, 2009 at 12:54 pm #39031In reply to: Where to find custom themes ?!
Webmatter
ParticipantHi, do you know if there is a documentation about template tags that can be used for buddypress themes?
March 2, 2009 at 12:43 pm #39030In reply to: Where to find custom themes ?!
ngsonst
Participanthi,
most likely you have to customize yourself. i dont know a address for premium themes, in my opinion there is non. but you might look here: freebuddypressthemes.com, where daniel felice is trying to build up a place for sharing buddypressthemes.
nicolai
March 2, 2009 at 7:52 am #39025In reply to: BuddyPress For WordPress (Not MU) Coming
Idiom
ParticipantWow.. the Site Wide Plugin looks fantastic.. This makes for loads of possibilities.. like a standard wpmu album plugin. of course only after integrating the code to display it in the members directory. ..
I would really like to see the blogging functionality get added to the buddypres administration pages rather than the standard wp admin back-end. Any hopes of this being done?
Brian
March 2, 2009 at 7:39 am #39023In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterWell, while the GF is in the shower, I’ll quick do this… Burt this is aimed directly at you, since I gather most others won’t want to do this kind of thing…
oci_bb_group_forums.php:
This prevents wrong inclusion order when using deep forum integration.
if (defined(BACKPRESS_PATH))
require_once( BACKPRESS_PATH . '/class.ixr.php' );This will return ALL user info, in the event that bbGroups does not exist yet for that user.
function oci_get_userdata($u){
$u = (int) $u;
$user = bb_get_user($u);
if ($user->bbGroups) {
return stripslashes_deep((array)$user->bbGroups);
} else {
return stripslashes_deep((array)$user);
}
}oci_bp_group_forums.php:
This prevents wrong inclusion order when using deep forum integration.
if (!defined(BBDB_NAME))
require_once(ABSPATH . WPINC . '/class-IXR.php');This is how I passed the user info over from xprofile to bbGroups:
/**
* oci_get_user_filter()
*
* Live example of how to use the filter mechanism to add info to the data going across to bbpress
* This filter adds the user's forums and forums where the user is staff into the $user array
* @return
* @param associative array $user from oci_get_user()
*/
function oci_get_user_filter($user){
$users_group_info = oci_get_users_group_info($user['id']);
$user['users_forums'] = $users_group_info['forum_ids'];
$user['user_is_staff'] = $users_group_info['staff_ids'];
$user['custom_title'] = bp_get_field_data('Custom Title', $user['id']);
$user['signature'] = bp_get_field_data('Signature', $user['id']);
$user['aim'] = bp_get_field_data('AIM', $user['id']);
$user['yahoo'] = bp_get_field_data('Yahoo!', $user['id']);
$user['gtalk'] = bp_get_field_data('GTalk', $user['id']);
$user['msn'] = bp_get_field_data('MSN', $user['id']);
$user['jabber'] = bp_get_field_data('Jabber', $user['id']);
$user['icq'] = bp_get_field_data('ICQ', $user['id']);
return $user;
}
add_filter('oci_get_user','oci_get_user_filter',10,1);oci_bb_custom.php
How I transfer the username (just in case fullname hasn’t been edited from wordpress.org transfer – see above oci_get_userdata changes):
function oci_user_name($u){
$bp_user = oci_get_userdata($u);
if ($bp_user['fullname']) {
return $bp_user['fullname'];
} else {
return $bp_user['display_name'];
}
}bbpress/active-theme/functions.php
What I added to make the custom functions go:
add_filter('get_user_profile_link', 'bppro_user_profile_link', 10, 2);
function bppro_user_profile_link($link, $uid) {
$user = bb_get_user($uid);
return(bb_get_option('wp_siteurl').'/members/' . $user->user_login);
}
function bppro_user_url() {
global $bp;
return($bp->loggedin_user->domain);
}
function bp_check_title($user) {
$user_id = get_post_author_id();
$user = bb_get_user($user_id);
$user_title = $user->bbGroups['custom_title'];
if ($user_title) {
return $user->bbGroups['custom_title'];
} else {
return;
}
}
add_filter('post_author_title', 'bp_check_title');
add_filter('post_author_title_link', 'bp_check_title');
function post_author_signature() {
$user_id = get_post_author_id();
$user = bb_get_user($user_id);
$user_signature = $user->bbGroups['signature'];
if ($user_signature) {
echo '<p class="post-signature">__________<br />' . $user->bbGroups['signature'] . '</p>';
}
}bbpress/active-theme/post.php
Displays avatar from BuddyPress if it exists, else bbPress/Gravatar. Also displays hooked data from above functions.php:
<div class="threadauthor">
<dl>
<dt><a class="oci-link" href="<?php echo oci_user_link($bb_post->poster_id); ?>"><?php echo oci_user_name($bb_post->poster_id); ?></a></dt>
<dd><span class="oci-title"><?php $patl = post_author_title_link(); ?></span></dd>
<dd><?php if (oci_user_avatar($bb_post->poster_id)) { echo oci_user_avatar($bb_post->poster_id); } else { post_author_avatar_link(); }?></dd>
</dl>
</div>
<div class="threadpost">
<div class="poststuff">
<?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php bb_post_admin(); ?><?php bb_quote_link(); ?>
</div>
<div class="post">
<?php post_text(); ?>
</div>
<?php post_author_signature(); ?>
</div>March 2, 2009 at 5:31 am #39012In reply to: BuddyPress Showoff: Post your links
grendel28
MemberMy site is at http://housenysian.com but as it was built mostly to host our main project, which is the blog at http://housenysian.com/ummo/
still soooo much customizing to do, but it is fairly well modified just to be a development placeholder (which it is). please feel free to muck around, create blogs, whatever.
March 2, 2009 at 4:45 am #39009In reply to: Fixes for “buddypress-home” theme
John James Jacoby
KeymasterCan’t believe I didn’t catch those. Good finds!
March 2, 2009 at 4:33 am #39008In reply to: Fixes for “buddypress-home” theme
joalbright
MemberWill do. Didn’t know the appropriate way to add this. Thanks.
Mythailife
ParticipantBurtadsit, I’m confused. Are you saying that WP plugins work in BuddyPress? If that is true then I just don’t see it. The Plugins link in the admin doesn’t show plugins. Where are these plugins viewable at or am I missing something?
FYI, I’ve tried these plugins in the plugins folder and the mu plugins folder and don’t see any admin for them.
I’m using Contact Form 7, WP-Ecommerce plugins.
March 2, 2009 at 2:57 am #39004In reply to: BuddyPress For WordPress (Not MU) Coming
John James Jacoby
KeymasterWell that’s interesting, and pretty much perfect for both platforms actually.
Makes me wish I was more involved in WordPress from the get go, sometimes I get a little lost in the code still to be able to put something that cool together.
Good job Andy. :thumbup:
March 2, 2009 at 1:58 am #38994In reply to: Fixes for “buddypress-home” theme
Trent Adams
Participant@joalbright could you login to https://trac.buddypress.org/ and add this as a ticket using the login from this forum?
Trent
Trent Adams
ParticipantIn terms of the navigation? You would have to edit the header.php of both the buddypress-home theme and the buddypress member theme to change the order as I don’t think the filter works for position for a plugin.
Trent
March 2, 2009 at 1:44 am #38992In reply to: Disabling Java / HTML in profile fields & comments?
Trent Adams
ParticipantBest bet if you find a bug or an enhancement would be to post it on http://trac.buddypress.org with your login from these forums. It might not be known yet and the reporting might help get it fixed.
Trent
March 1, 2009 at 11:37 pm #38988In reply to: BuddyPress Showoff: Post your links
wildchild
ParticipantArtistBlog.ME, ready to promote and aid the (upcoming) artist on the block, running Buddypress as social network component at http://www.artistblog.me ; which will be complemented with the ArtistPlug.ME component, soon.
Enjoy! There are only limited spots available on this blog; only for and by artists wanting to defend their Creativity with their Common Rights…
March 1, 2009 at 11:04 pm #38986In reply to: BuddyPress For WordPress (Not MU) Coming
Trent Adams
Participant@conceptfusion if the following gets implemented, it won’t slow down development for either WP or WPMU.
https://trac.mu.wordpress.org/ticket/909
Trent
March 1, 2009 at 10:37 pm #38982In reply to: Comments not showing…
John James Jacoby
KeymasterDon’t see it, I’m adding it in there now. Darn.
Created:
https://trac.buddypress.org/ticket/554
I was so sure I had your issue nailed to. My apologies. I ran into the exact same problem myself a few weeks back so I was pretty sure I had it fixed. It was about that same time I noticed the permalink issue also, so they worked hand-in-hand against me. Ha!
-
AuthorSearch Results