Search Results for 'buddypress'
-
AuthorSearch Results
-
March 3, 2009 at 3:27 pm #39138
In reply to: Where to find custom themes ?!
alainhc
MemberHi, I´m interested in making my own buddypress-home theme and buddypress-member theme, to fit my web site. I´ve been looking for information on the web, but I have not found anything good. Anyone has some kind of tutorial about it?
Alain
March 3, 2009 at 3:10 pm #39137alainhc
MemberHello everyone. Hi Burtadsit. I´ll try to explain using my poor English, I´m cuban. The error occurs in a Clean install, when you activate the home theme and try to visit the root blog, or the blog of any user previously created.
The page show the following error:
Warning: require_once(C:sitiossitiosocial/wp-content/member-themes/buddypress-home/index.php) [function.require-once]: failed to open stream: No such file or directory in C:sitiossitiosocialwp-includestheme.php on line 822
Fatal error: require_once() [function.require]: Failed opening required ‘C:sitiossitiosocial/wp-content/member-themes/buddypress-home/index.php’ (include_path=’.;C:xamppphppear’) in C:sitiossitiosocialwp-includestheme.php on line 822
How you can see, the application doesn´t found a buddypress-home directory inside member-themes. So, we solve this making a copy of the buddypress-member and renaming it to buddypress-home.
Changing the topic (I know this is out of forum). I´d like to make my own buddypress-home theme, and buddypress-member theme. Do you have any documentation about it???
Alain
March 3, 2009 at 2:55 pm #39136In reply to: How do I clear the menu bar?
John James Jacoby
KeymasterWell, it could really go in a few different places. Let me take a look when I get to work to see where will work the best.
Here on BuddyPress, the “admin bar” has been nick named the “buddy bar.” It actually replaces the typical “admin bar” from a normal WPMU install.
The files for it can be found in the bp-core directory if you needed to modify it for any reason.
The buddy bar is actually loaded very last in the DOM, and it is absolutely positioned to top 0, so its essentially hovering over the body contents. Because there are at least two active themes at any given moment (home and member) you could either throw the css into homethemedir/css/site-wide.css, or all of the base.css for each theme.
But let me double check for certain.
March 3, 2009 at 1:39 pm #39134In reply to: BBpress not sharing login details
reprocessor
ParticipantHi John,
I GOT IT! Eventually LOL.
I did a bit of digging on the forums and saw this thread https://buddypress.org/forums/topic.php?id=471&page=2#post-5680 – I didn’t realise I needed to be logged in to both BP & BBPress to do this. Once I saw DJpaul’s first post on this thread the penny dropped.
Thank you for all your help – everything works a treat now!
Best regards,
Phil
March 3, 2009 at 1:22 pm #39131In reply to: Disabling Java / HTML in profile fields & comments?
alxdesign
MemberAlright, thank you. I’ll report it.
I find it strange though, since I tested to run a <script> on the buddypress demo, and it didn’t work. Are you sure there isn’t some function I’ve accidentally allowed?
March 3, 2009 at 9:59 am #39126In reply to: Modify BP links
Burt Adsit
ParticipantThis thread points to a domain mapping plugin for wp.
March 3, 2009 at 9:20 am #39124In reply to: Modify BP links
nzmitch
MemberAny progress on this?
I’d like to install BuddyPress on a subdomain too (the top domain is a public website).
Would be an awesome feature!
March 3, 2009 at 9:19 am #39123In reply to: multi-db for buddypress
ichbinsdennis
MemberI think this plugin would be very important because every community that grows will need multiple databases otherwise everything won’t get bigger..
I hope Nicola or Andy will do something in this way..
March 3, 2009 at 8:46 am #39121In reply to: Announcing: toksta* chat plugin for BuddyPress
Per Søderlind
Participantanother bugfix, updated to 0.93: http://www.soderlind.no/archives/2009/02/27/toksta-chat-plugin-for-buddypress/
March 3, 2009 at 8:35 am #39117In reply to: A little help with member theme
John James Jacoby
Keymasterbuddypress-member/css/base.css – line apx 495 – Make that be…
.main-column h1 a, #blog-info h1 a {
color: #646464;
margin: -120px 0 0 200px;
position: absolute;
}March 3, 2009 at 8:21 am #39113In reply to: A little help with member theme
John James Jacoby
Keymasterbuddypress-member/css/base.css – line apx 477 – remove
float: left;bp-core/css/structure.css – line apx 110 – remove
float: left;bp-core/css/structure.css – line apx 64 – remove
margin-left: 200px;Give that a shot?
March 3, 2009 at 7:26 am #39111In reply to: BP Avatars in bbPress
Burt Adsit
ParticipantHi John.

I have to test the xprofile stuff on the bbpress template tag level. I think I’m transferring data that could be serialized in $field_obj->data->value. Gotta check that.
This thing needs chat. You ever on IRC? A bunch of us hang out in irc.freenode.net #buddypress. I’m always there.
March 3, 2009 at 7:19 am #39109In reply to: BP Avatars in bbPress
Burt Adsit
ParticipantI like the inclusion of ‘signature’ in a profile field! Nice idea.
I’ve updated bbGroups to optionally transfer all users over to bbpress meta or just users who are in groups. Skipping the bbpress/buddypress utility user.
I’ve got all xprofile groups and group field values going to bbpress.
Got a template tag that allows getting any of those values by user, group, field.
Did some cleanup internationalization for text.
Now doing testing. Gotta look into the problem with tags for hidden groups showing up in the tag cloud. I don’t think you’d be interested in any of this. You’ve already got that stuff implemented.

I think that the only mod of yours I stepped on was the oci_get_user_filter() changes you included in there. I added another filter function oci_get_xprofile_filter($user) that adds all the xprofile fields to the $user array. It won’t break your mod, it’ll just add all the xprofile fields again.
/**
* oci_get_xprofile_filter()
*
* This filter adds all xprofile groups and group fields to bbpress
*
* @param <array> $user
* @return <array> $user array for xmlrpc transport
*/
function oci_get_xprofile_filter($user){
$xprofile_groups = BP_XProfile_Group:: get_all(true); // all except empty groups
foreach($xprofile_groups as $group){
foreach($group->fields as $field){ // all fields for group
$field_obj = new BP_XProfile_Field($field->id, $user,true); // this field
// xprofile_groupname_fieldname to prevent conflicts
$user = array(‘group’ => $group->name, ‘name’ => $field_obj->name, ‘value’ => $field_obj->data->value, ‘type’ => $field_obj->type);
}
}
return $user;
}
add_filter(‘oci_get_user’,’oci_get_xprofile_filter’,10,1);
March 3, 2009 at 3:46 am #39105In reply to: Blogs with custom domains
netspencer
Participantanyway, the plugin should work but it doesn’t really keep the functionality of buddypress… for that we both need assistance… what the plugin does it esentially create an entire new site for wpmu, one that can have a seperate set of users and everything… i’ve been able to set up seperate buddypress set ups on both sites but havn’t’t been able to combine it…
hope this helps!
March 3, 2009 at 3:39 am #39103In reply to: Blogs with custom domains
John James Jacoby
KeymasterOkay, so here’s a question…
Do you think it’s possible to use this plugin, to have both subdomains and subdirectories with WPMU and BuddyPress?
Lets say I use this plugin to map a blog to red.mydomain.com… Can I then map other blogs to that same subdomain, but have them utilize the built in subdirectory install method of WPMU?
So I could have…
red.mydomain.com/bob/
red.mydomain.com/fred/
red.mydomain.com/murphy/
But also have…
blue.mydomain.com/bob/
blue.mydomain.com/fred/
blue.mydomain.com/murphy/
And have them be totally different blogs with totally different content, underneath the same MU install?
I would create a subdomain in my hosting package to accommodate for it of course, but since MU would be setup to have sub directories, and I can map each blog specifically, unless I’m going crosseyed, I see this as doable.
March 3, 2009 at 3:34 am #39102In reply to: Blogs with custom domains
netspencer
Participantlooks awesome… hope it works in buddypress!
I’ll let you know how it works!
THANK YOU SO SO MUCH!
March 3, 2009 at 2:54 am #39100Anointed
ParticipantLooking good Nicola.
I love your plugins and the support you provide, it’s very much appreciated.
btw
Maybe an error with the forum software here?
This post said it has 3 replies prior to me entering this one, however there are none.
March 3, 2009 at 2:51 am #39098In reply to: Translating BuddyPress
Dedy Sofyan
ParticipantFirst of all, BuddyPress is so promising. Keep up the good work!
Currently, I’m involved in implementing BP for a local NGO, and I’m happy to share the translation files.
I’ve done translating the “Bahasa Indonesia” for the RC-1 version and posted on the codex page:
https://codex.buddypress.org/translations/indonesia-indonesian-id_id/
Feel free to comment and correct any error.
March 3, 2009 at 12:04 am #39089In reply to: BuddyPress Showoff: Post your links
dillahbaraja
Memberhttp://www.barajaonline.com It’s Baraja Online Community
March 2, 2009 at 10:41 pm #39086Burt Adsit
ParticipantHi people. The combo download for RC-1 from buddypress.org is fine in both the zip and tar.gz versions. Everything is where it should be. Just checked.
When does this happen? Clean install, activate the home theme visit the root blog and then you get this error? Or does this only occur when you are in the member theme area such as your profile and then try to visit the home theme? For example you click ‘blog’ or ‘members’ buttons.
I think that something is trashing a WP constant called TEMPLATEPATH that is created in wp-settings.php >> define(‘TEMPLATEPATH’, get_template_directory());
It’s either not getting set correctly or it’s getting fubar’ed later, somehow.
Have you tried activating a different theme for the root blog? Do you get the same error? Try just activating *anything* else other than the bp home theme and then do what you did to reproduce the problem.
Trying to narrow things down. Lemme know.
p.s. I flipped the red light switch on this thread so that others may join in the fun too.
March 2, 2009 at 10:32 pm #39085In reply to: BuddyPress For WordPress (Not MU) Coming
Trent Adams
Participanthttps://trac.mu.wordpress.org/browser/branches/2.7
Zip at the bottom of the page or if you use SVN you can use that URL as well.
Trent
March 2, 2009 at 10:27 pm #39082In reply to: BuddyPress For WordPress (Not MU) Coming
Mythailife
ParticipantAnd where is that downloaded?
March 2, 2009 at 9:14 pm #39074In reply to: BuddyPress For WordPress (Not MU) Coming
Trent Adams
ParticipantNo, it can be tested by downloading the WPMU Branch of 2.7. It is not in trunk.
Trent
March 2, 2009 at 8:48 pm #39073In reply to: BuddyPress For WordPress (Not MU) Coming
Mythailife
ParticipantIs that patch in the latest version of MU?
March 2, 2009 at 8:33 pm #39071In reply to: Is BuddyPress good for this?
Doodlebee
ParticipantAwesome – thanks so much – that’s *exactly* what I was hoping to hear
(Yay – now I get to finally play with it!)
-
AuthorSearch Results