Search Results for 'buddypress'
-
AuthorSearch Results
-
March 8, 2009 at 5:33 pm #39478
In reply to: Forum Integration: HELPING HINTS
Matt Kern
ParticipantInteresting point John, thanks.
After spending a few hours with little success, it seems I am having difficulties on 2 fronts: wpmu and bbpress integration and buddypress xmlrpc integration.
I am at times not sure which one I am troubleshooting.
March 8, 2009 at 3:50 pm #39476In reply to: bbpress profile vs. buddypress profile
thecoveted
Memberwoops, found my own answer
March 8, 2009 at 3:46 pm #39475In reply to: bbpress profile vs. buddypress profile
thecoveted
Memberhi there…
i’ve been running my forums on bbpress for some time, and would like to move over to buddypress.. is there a way to import bbpress including profiles into buddy?
i’d like that very much (and so would my users)
March 8, 2009 at 8:55 am #39469In reply to: bbpress theme
felix2009
ParticipantThey’ve allready developed a buddypress theme for bbpress, take a look at their own forum

They just have to realese it …
March 8, 2009 at 8:09 am #39463In reply to: Video album
John James Jacoby
KeymasterCheck out this discussion here…
https://buddypress.org/forums/topic.php?id=367#post-1453
Gonna close this topic to lure everyone over to the other party.
March 8, 2009 at 7:26 am #39460In reply to: Buddy Press Home Page as a Content Page
John James Jacoby
KeymasterI would recommend installing WPMU in the root directory, and modifying home.php in your buddypress-home theme to best match your existing site while still incorporating most of the typical, familiar BuddyPress links.
To answer your questions, WPMU gets installed in the root directory, and BuddyPress is installed in the wp-content/mu-plugins/ directory. (Check codex.buddypress.org for install help.)
The BuddyPress homepage is the home.php file I mentioned above. The files in your root directory are just functionary place holders to help tell WPMU/BuddyPress what content to get from the database and then to tell them which theme files to display that data with.
John James Jacoby
KeymasterReally, take this a step further to say that anything that is a plugin to BuddyPress could be a content type automatically, that could be turned on or off in the admin panel.
Groups, Blogs, and Members so far. Later on the Gallery could be part of it, so when the gallery is dropped into mu-plugins, it automatically populates new content types.
March 8, 2009 at 4:30 am #39445In reply to: Member Page
John James Jacoby
KeymasterThis is where the member theme gets tricky and throws a curve ball…
Check out
/mu-plugins/bp-groups/directories/bp-groups-directory-groups.phpThose files technically aren’t part of the member theme, because they’re not really displaying any specific member or group info; they’re part of the BuddyPress Groups Directory page, and they are meant to be styled site wide using the home themes header and footer files, not the member themes.
Tricky eh?
March 8, 2009 at 3:47 am #39442In reply to: BuddyPress Showoff: Post your links
John James Jacoby
Keymaster@bmg1227, looks good. Anyone familiar with your previous work is probably expecting pretty fabulous things for BuddyPress from you in the future.

A quick note of thanks to everyone for sharing your sites with everyone else.
March 8, 2009 at 3:15 am #39439In reply to: RC1 admin bar sub-menus act weird
John James Jacoby
KeymasterI am closing this topic, as it has been addressed also in “RC-1 – admin-bar-menu acting weird?.”
March 7, 2009 at 11:07 pm #39431In reply to: Search is case senitive
Burt Adsit
Participantoldskoo1! Howdy partner.
Ok. in bp we have the ability to search blogs, groups and members.
/mu-plugins/bp-blogs/bp-blogs-classes.php search_blogs()
/mu-plugins/bp-groups/bp-groups-classes.php search_groups()
/mu-plugins/bp-friends/bp-friends-classes.php search_users()
In all cases you’ll probably have to uppercase or lowercase the search term $filter and the field(s) in the sql statement itself.
strtolower($filter) then something like:
WHERE LOWER(value) LIKE $filter
I don’t think I’ve ever used the bp search stuff. Thanks for finding this.
I created a ticket on this: https://trac.buddypress.org/ticket/570Search should be case insensitive.
March 7, 2009 at 9:40 pm #39429In reply to: BuddyPress Showoff: Post your links
felix2009
ParticipantMarch 7, 2009 at 2:37 pm #39420In reply to: Forum Integration: HELPING HINTS
Matt Kern
ParticipantOK, I am starting to realize my next wrong turn. This is my first dive into BBpress and when the topic of this post said “assuming you have wpmu and bbpress all set up” – I thought I did, but I didn’t.
BBPress Newbs FYI:
There is a whole cookie/hash integration that has to happen that I have not looked at yet. Here are 2 great resources on the topic
http://umwblogs.org/wiki/index.php/Integrating_WPMu,_BuddyPress,_and_bbPress
https://bbpress.org/forums/topic/basic-integration-screencast
March 6, 2009 at 9:36 pm #39400In reply to: BP Content Tags Project – Call For Ideas
John James Jacoby
KeymasterWell I’ll be… I think tiny url’s are fine, and probably for the best really…
You know, to Andy’s credit, it’s really kind of fun to find little bits of creative genius in BuddyPress… Stuff like this, and the Groups Template idea, and just little prethoughts of the future, they’re just really cool…
March 6, 2009 at 9:32 pm #39398In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterNo sweat. I ask because lets say I make a “Signature” field, it’s a textarea, and it’s going to be used for their forum signature.
If their signature is
"<a href="bob" style='color: red;'>Bob</a>, is amazing!"is BuddyPress going to parse the crap out of it, and is this going to understand that?March 6, 2009 at 8:56 pm #39393In reply to: Is it possible to have custom themes for groups?
nicolagreco
Participantif (the group is XBOX) add_action(‘wp_print_styles’, ‘your style hook’)
i made a good set of functions in bpdev theme to add stylesheet with condition, look here:
http://trac.bp-dev.org/plugins/browser/trunk/bpdev-theme/bpdev-theme-extra.php
look line 9:
function bpdev_theme_register_style( $slug, $name, $callback, $default = 'off', $admin_show = 'on', $condition = true, $priority = 1 ) {it means that with this function you will be able to add styles in wordpress/buddypress integrating them in the bpdev admin interface to activate or deactivate them,
in your example you need a plugin like that called for example my-styles-bpdev.php
<?php
/*
Author: Nicola Greco
Author URI: http://nicolagreco.com
*/
require_once( 'bp-core.php' );
require_once( 'bpdev-core.php' );
function bpdev_search_css() {
global $group_obj;
bpdev_theme_register_style(
'my-styles', // your style slug name
'XBOX Styles', // your style name
'xbox_styles_function', // callback
'on', // status "on" on default
'off', // off will not display it in admin interface
$group_obj->id = 1; // the group ID
);
}
function xbox_styles_function() { // example of css content
?>
#header {
background: #FFF;
}
<?php
}
add_action( 'bpdev_theme_extra_setup_globals', 'bpdev_search_css' ); // it will add the style
?>March 6, 2009 at 7:59 pm #39380In reply to: Plugin Developers – Submit to WP Plugin Repo
GiovanniCaputo
ParticipantHow I can add buddypress tag? Where on readme file
March 6, 2009 at 7:45 pm #39379In reply to: BuddyPress Showoff: Post your links
March 6, 2009 at 7:32 pm #39378John James Jacoby
KeymasterYou should use the .htaccess.dist file that comes with BuddyPress if BuddyPress does not create or cannot edit the existing one that’s there.
What you have above will not be enough for all of BuddyPress/WPMU to function correctly.
RewriteEngine On
RewriteBase BASE/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>It has additional lines for handling multiple upload directories, blogs, etc…
March 6, 2009 at 5:15 pm #39370John James Jacoby
KeymasterYou will have to have a separate theme for your subdomain, and hard-code the links to go back to your root domain.
The way I did this, was to have a “buddypress-home” theme, and a “buddypress-sub” theme. The sub theme is basically a copy of all of the files from the “buddypress-home” theme, but without home.php, an edited style.css to change the name of the style, and a modified header.php which I will explain below.
The home theme is activated only for the root blog, the sub theme for all others.
In the header.php file for the sub blogs, I used
$bp->root_domainas the destination for each link, plus whatever slug was appropriate (MEMBERS_SLUG, BP_GROUPS_SLUG, BP_BLOGS_SLUG).I also went ahead and made the BP_BLOGS_SLOG link
class="selected"right away, that way when you’re in a sub blog, the appropriate tab is always shown as selected.March 6, 2009 at 5:04 pm #39369In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterBurt have you tested this with each specific type of field in the xprofile area? With quotes and what not?
I’m going to make a clean install of BuddyPress on my test domain and see if I can duplicate this. I’d really like to know what I did that’s breaking it.
March 6, 2009 at 3:55 pm #39367In reply to: Group Activity Feeds
Joss Winn
ParticipantGlad you like the idea, too.
I’m keen on being able to break down feeds for each specific activity within a group rather than just one group feed, so have suggested this: https://trac.buddypress.org/ticket/567
March 6, 2009 at 11:44 am #39361In reply to: 404 errors – fresh install
Baur
Participantsame problem, yes WPMU works fine without BuddyPress installed!!!
March 6, 2009 at 10:48 am #39357In reply to: Group Activity Feeds
Burt Adsit
ParticipantThat would be nice. It could include members activity, forum activity, wire activity. Ya, nice idea. Why don’t you post it in trac as an enhancement ticket?
https://trac.buddypress.org/newticket
Login with the same credentials as here.
March 6, 2009 at 10:43 am #39356In reply to: Publishing documets to a group
Burt Adsit
ParticipantNot at the moment. It’s in the works though. See: https://buddypress.org/forums/topic.php?id=1304
-
AuthorSearch Results