Search Results for 'buddypress'
-
AuthorSearch Results
-
January 8, 2009 at 8:18 pm #35913
In reply to: Blank screen in new created blog
Trent Adams
ParticipantThe only blog that should be using the buddypress-home theme is the main blog. All other blogs can use whatever theme the users usually want if they are installed. I am getting the impression that you deleted the “default” folder out of /wp-content/themes/ and that is what is causing you issues.
Trent
January 8, 2009 at 8:10 pm #35912In reply to: Blank screen in new created blog
yu
Participantnope, this is not php error. this is blog creation error. when i create new blog from ‘/wp-admin/wpmu-blogs.php’ – it’s config is not correct. ‘Default theme’ and ‘Default stylesheet’ are set to ‘default’. Dunno what it mean, but when i change this line to ‘buddypress-home’ – new blog works like a charm ) is there anything i can do to make ‘dafault’ theme works for new created blogs? or automate ‘buddypress-home’ adding to this fields? oO
January 8, 2009 at 7:27 pm #35906In reply to: Plugin:change_newblog_defaults
nicolagreco
Participantyou should fill out this form http://buddypressdev.org/add-plugin
January 8, 2009 at 5:59 pm #35899In reply to: Will BuddyPress work with Multi-Site Manager Plugin
Trent Adams
ParticipantThat is a very good question! Never run across anyone that tried it, but I can’t see why it wouldn’t work since the hardcoding for site “1” is all gone now. Short of testing it out, I am not sure if anyone has an answer. I might get a chance to test this out later today though. If you test it out, let us know.
January 8, 2009 at 2:23 pm #35893In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
Mike Pratt
Participantcdaniel09 – you need to move up to wpmu 2.7
January 8, 2009 at 7:36 am #35875In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
nickmu
Memberawesome plugin!
January 8, 2009 at 12:25 am #35863In reply to: “Next page” problem
Trent Adams
ParticipantThis topic might get more attention if you post it in the WPMU forums as it isn’t a buddypress related issue.
January 7, 2009 at 11:13 pm #35859In reply to: strange admin address
nickmu
Memberburtadsit
I’m sorry…i’m new to some of the web jargon. I’m a musician. I understand now what you guys mean re: commenting out. I commented those lines out and its still sending all emails from bluehost (not to mention..its taking about an hour to two to receive them.
I’m sure there is a simple resolution but it seems to be over everyone’s head.
Chris, what lines did you comment out? I’d really appreciate anyones help.
I can’t have buddypress sending emails from a bluehost address to people that sign up on my site …not to mention it taking an hour to get their confirmations etc.
January 7, 2009 at 10:13 pm #35854In reply to: Is it possible to get only the avatar-url ?
Burt Adsit
ParticipantIn bp-core-classes.php is BP_Core_User
/**
* BP_Core_User class can be used by any component. It will fetch useful
* details for any user when provided with a user_id.
*
* Example:
* $user = new BP_Core_User( $user_id );
* $user_avatar = $user->avatar;
* $user_email = $user->email;
* $user_status = $user->status;
* etc.
*
* @package BuddyPress Core
*/Lots of stuff in that class. You need a user id to instantiate one.
January 7, 2009 at 10:05 pm #35852In reply to: Friends List
Burt Adsit
ParticipantI can’t find any tickets in Trac about this issue. Why don’t you start one? Make sure you describe your install environment clearly.
January 7, 2009 at 9:14 pm #35848In reply to: procedure for removing Admin Bar Sub Nav item
Burt Adsit
ParticipantMike the idea is that if I want to change the function of a menu item, I have to replace the menu item with something of my own. I want to change “My Account” on the bar and add a new item underneath entitled: “I Owe Mike How Much!?”. I have to replace the entire “My Account” menu item since the granularity of the actions are at the top level menu item only.
I can slide new menu items in between existing items easily but that’s the way it has to happen for drop down items.
I create a plugin that runs in /mu-plugins since I want this to run all the time for all users on all blogs. It’ll get run every page load.
An example is replacing the bp logo image in the bar. Same technique for other menu items. The item gets rendered through the function:
bp_adminbar_logo() in bp-core-adminbar.php
This function gets registered in mu by us telling mu about this function and when to trigger it:
add_action( ‘bp-adminbar-logo’, ‘bp_adminbar_logo’ ) at the bottom of bp-core-adminbar.php
To replace the logo with our own logo or do something completely diff like just use the word ‘Home’, whatever we unregister the existing fn, register our own that replaces the old fn and does something different. Like below:
function oci_adminbar_logo() {
global $bp;
echo '<a href="' . $bp['root_domain'] . '"><img id="admin-bar-logo" src="' . apply_filters( 'bp_admin_bar_logo_src', site_url( MUPLUGINDIR . '/common-interest/images/oci_home.gif' ) ) . '" alt="' . apply_filters( 'bp_admin_bar_logo_alt_text', __( 'BuddyPress', 'buddypress' ) ) . '" /></a>';
}
remove_action('bp-adminbar-logo','bp_adminbar_logo');
add_action('bp-adminbar-logo','oci_adminbar_logo');
The above says “don’t pay any more attention to the function bp_adminbar_logo() when the action ‘bp-adminbar-logo’ occurs, pay attention to my oci_adminbar_logo() fn and do that instead.
You have to replace the *entire* menu item with something of your own. Clearer? No?
January 7, 2009 at 8:54 pm #35846Burt Adsit
Participant
January 7, 2009 at 8:50 pm #35845In reply to: Change Blog Avatar
Anonymous User 303747
InactiveOK -that’s easy enough
I’ll check if there’s an enhancement request for this and if not, I’ll create one.
UPDATE: there’s a feature request at https://trac.buddypress.org/ticket/192
January 7, 2009 at 8:21 pm #35839In reply to: Friends List
altesc
ParticipantHello, I am having the same problem, using Buddypress with directories instead of subdomains. When I create a group I can’t invite any members because my friends list is empty although I do have several friends. I am developing a site at http://www.conexionesbcn.com
January 7, 2009 at 7:32 pm #35837In reply to: Twitme 1.7 for buddypress testers need
gpo1
ParticipantAll you need to do is link on the developers link for details
January 7, 2009 at 6:29 pm #35832In reply to: Is it possible to get only the avatar-url ?
seppolaatle112
ParticipantThanks for the reply, but that’s not what I need… I know what I can use to get the full “<img src=”http://your.site/wp-content/blogs.dir/blog_id_here/files/avatars/user_id_here/user_avatar.jpg” alt=”” class=”avatar photo” width=”50″ height=”50″ />” , but I need something that only gives me the image-url, in this case, “http://your.site/wp-content/blogs.dir/blog_id_here/files/avatars/user_id_here/user_avatar.jpg…”
Is there anything I can do to make Buddypress return only the image url?
January 7, 2009 at 5:50 pm #35827Trent Adams
ParticipantIf you leave your contact information, I can close this thread as this is a support forum and not a job board.
January 7, 2009 at 5:45 pm #35826In reply to: Twitme 1.7 for buddypress testers need
Trent Adams
ParticipantI will test it for you. Send it to my at the address on my contact page:
January 7, 2009 at 1:42 pm #35809In reply to: Twitme 1.7 for buddypress testers need
gpo1
ParticipantAny interested testers out there for this great plugin, so that it could be released asap?
January 7, 2009 at 1:42 pm #35808In reply to: Plugin:change_newblog_defaults
nicolagreco
ParticipantPerS add this plugin on bpdev plugins directory here http://buddypressdev.org/add-plugin
January 7, 2009 at 5:24 am #35790In reply to: How to get rid of autolinking on profile fields
fishbowl81
ParticipantThis post maybe a little more clear, as it has a full working music player.
https://buddypress.org/forums/topic.php?id=604#post-3382
#1, the 2 is priority of the filter.
#2, I have been lazy and just made everything inside of the “social details” group active links. In the future I maybe validating them with some regular expressions or substring checking.
#3, check for an @ and at least 1 period in the string and no spaces? There are some very complex regular expressions which can validate e-mail addresses, but regular expressions are slower then substrings.
Brad
January 7, 2009 at 5:17 am #35789fishbowl81
ParticipantThose “steps” are for using the buddypress code, ie xml-rpc communication inside of groups. If you theme the general bbpress install to match your buddypress site then you won’t need to enable xmlrpc on the general site, just do the intergration.
I think someone will develop a modification of the groups, to be a general group pretty soon. If this is the case, then you would need to do those steps for both bbpress installs.
Hope that makes sense,
Brad
January 7, 2009 at 4:08 am #35786In reply to: Purely Genius Way to Add Custom Profile Fields
fishbowl81
ParticipantHere it is, save as bp-music.php and copy into your muplugins
you must create a profile details group “Audio Details”, and all values will be replaced by a music player.
Check out a working copy on:
http://gorgeousgamers.com/beta/members/bradmkjr/
Brad
http://gorgeousgamers.com/beta/
<?php
/*
* Created on Dec 29, 2008
*
* Project Buddypress Addons
*
* File bp-music.php
*
*/
function bp_profile_music_player( $field_value =””, $field_type = “”, $field_id = “” ) {
if($field_value == “”)
return “Nothing to show”;
else
{ // clean up input
return “<script type=’text/javascript’>
var amzn_wdgt={widget:’MP3Clips’};
amzn_wdgt.tag=’gorgeousgamers-20′;
amzn_wdgt.widgetType=’ASINList’;
amzn_wdgt.keywords='”.addslashes($field_value).”‘;
amzn_wdgt.title=’What I’ve been listening to lately…’;
amzn_wdgt.width=’250′;
amzn_wdgt.height=’250′;
amzn_wdgt.shuffleTracks=’True’;
amzn_wdgt.marketPlace=’US’;
</script>
<script type=’text/javascript’ src=’http://wms.assoc-amazon.com/20070822/US/js/swfobject_1_5.js’>
</script>”;
}
}
function bp_profile_music_groups( $group_name =””) {
if($group_name == “Audio Details”){
remove_filter( ‘bp_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 2);
add_filter( ‘bp_the_profile_field_value’, ‘bp_profile_music_player’, 2, 3);
}else{
add_filter( ‘bp_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 2, 3);
remove_filter( ‘bp_the_profile_field_value’, ‘bp_profile_music_player’, 2);
}
return $group_name;
}
add_filter( ‘bp_the_profile_group_name’, ‘bp_profile_music_groups’, 10, 1 );
?>
January 7, 2009 at 4:04 am #35785iseec
MemberThanks Brad,
I is still not clear in my mind the difference for buddypress in group forum and site wide forum configuration
Should i still do these steps?
1) you have bbpress installed and a new user created on the “bbPress” side which you granted “administrator” rights by the keymaster
2) you copy the “buddypress-enable.php” plugin out of the bp-forums folders and copy it into your /my-plugins/ folder (create if it doesn’t exist) so it is /my-plugins/buddypress-enable.php
3) Enable the plugin through your bbPress administration side for plugins
4) Edit “settings” to enable xmlrpc and pingbacks (both)
5) edit your bb-config.php and just before the closing php call at the bottom of the page put:
$bb->bb_xmlrpc_allow_user_switching = true;
Do you still do these steps? Or skip these steps and just installed the bbpress and do common wordpress integration like cookie and user integration?
Thank you
January 7, 2009 at 2:42 am #35782In reply to: Pay to have buddypress installed?
karthik_kastury
MemberI can help you with this.. I installed buddypress successfully and you can see it in action at http://ignitte.in/
contact me at coolkarthik88@gmail.com
-
AuthorSearch Results