Search Results for 'buddypress'
-
AuthorSearch Results
-
February 16, 2010 at 11:54 pm #63621
In reply to: Facebook-Like-Chat Plugin for Buddypress?
Mike Pratt
Participant@r-a-y So are you talking about Group chats avail to anyone who is a member of the group..as opposed to just your “friends” ?
Agree that Arrowchat looks more promising than Bowob. #fail if they keep my data
February 16, 2010 at 11:48 pm #63620In reply to: Buddypress 1.2 Registration page not loading
myislamicblog
ParticipantProblem Solved, the problem was comming from old buddypress theme compatibility and some custom changes.
Thanks anyways.
February 16, 2010 at 11:39 pm #63619In reply to: Default theme with widgetized home page
modemlooper
Moderatorwp-content/themes/bp-widget
Theme needs to be activated as the site theme. Its basically the same theme as the default with a new functions file and page template for the home page. It’s better this way so the buddypress upgrades will never be affected.
February 16, 2010 at 11:09 pm #63614In reply to: 1.2 plug-ins list
Peter Anselmo
ParticipantGroup Documents – Huzzah!
https://wordpress.org/extend/plugins/buddypress-group-documents/
Although, this thread seems a little redundant – isn’t this the purpose of the “compatible up to” field? Maybe what we really need is for the WP plugins search to have a version filter.
February 16, 2010 at 10:47 pm #63613In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
ParticipantYeah, its confusing how the dev version link is all the way at the bottom!
I have all of the bookmarklet code from a previous project, I just have to implement it at some point. Btw, PM me with details of your oEmbed plugin so we don’t have any conflicts fighting over URLs in the activity stream. I am working on integration right now.
@etiviti
Glad to hear its working well for you! Be sure to post any bugs
I just committed code that enables a very basic widget that is similar to the groups widget. The old widget is on the back burner until some themes come out with larger widget areas that can accommodate it’s width.
February 16, 2010 at 10:29 pm #63611In reply to: books – getting started
Andrea Rennick
ParticipantBuddyPress for Dummies is out or almost out. Also the WordPress Bible, Digging into WordPress and WordPress for Dummies.
February 16, 2010 at 10:06 pm #63608Brajesh Singh
Participanthi David
As I mentioned above, it is nothing but a hack of the bp_get_page_title, here is adaption you can use
add_filter("bp_page_title", "bpdev_blog_title",10,2);
function bpdev_blog_title($complete_title,$title_old){
global $bp,$current_blog,$wp_query,$post;
if ( bp_is_blog_page() ) {//if this is blog page
if ( is_single() ) {
$title = __($post->post_title, 'buddypress' );
} else if ( is_category() ) {
$title = __( 'Categories | ' . ucwords( $wp_query->query_vars['category_name'] ), 'buddypress' );
} else if ( is_tag() ) {
$title = __( 'Tags | ' . ucwords( $wp_query->query_vars['tag'] ), 'buddypress' );
} else if ( is_page() ){
$title = $post->post_title;
}
if ( defined( 'BP_ENABLE_MULTIBLOG' ) ) {
$blog_title = get_blog_option( $current_blog->blog_id, 'blogname' );
} else {
$blog_title = get_blog_option( BP_ROOT_BLOG, 'blogname' );
}
if(!empty($title))
return $blog_title . ' | ' . esc_attr( $title );
}
//so on blog home page, It will show Blog,reason we have excluded that page
return $complete_title;
}Hope, It should help you, you can modify the various titles as you wish for the category/tags etc.
February 16, 2010 at 10:00 pm #63607r-a-y
Keymasterhttps://buddypress.org/forums/topic/activity-stream-as-homepage-no-blog-tab-rc2#post-36252
I’m going to add this to the FAQ thread, since a lot of people have been asking the same question!
February 16, 2010 at 9:52 pm #63605In reply to: BuddyPress Links 0.3-beta released for testing
rich! @ etiviti
ParticipantThis is the development version zip. It will always contain the latest trunk. Normally this is not recommended, but you guys seem to really want to play with it so ymmv.
feeling frisky… just installed and everything looks ok so far on single WP.
such a great plug-in!
February 16, 2010 at 9:48 pm #63603In reply to: BuddyPress Links 0.3-beta released for testing
r-a-y
KeymasterI think MrMaz previously stated he was working on a bookmarklet for BP Links, but that was during the BP 1.1 days.
Not sure where the status of this is currently.
I’m going to play around with BP Links when the stable version is released!
February 16, 2010 at 9:46 pm #63602In reply to: external-group-blogs & group-twitter doesn't work
Mark
ParticipantI’m getting the following when adding a new external feed in BP 1.2. Also, an extra slash is added to the External Blogs Admin URL (between the group name and admin). Anyone else?
http://anysite.org/groups/ltta-transition//admin/external-blog-feeds
Warning: array_map() [function.array-map]: Argument #2 should be an array in …/plugins/buddypress/bp-groups.php on line 2454
February 16, 2010 at 9:38 pm #63600In reply to: books – getting started
Peter Anselmo
ParticipantCan’t speak for everyone, but If you’re interested in developing plugins, I would suggest diving into PHP first. There’s plenty of good PHP books out there; personally, I’d recommend books published by O’Reilley.
Then, in lieu of the existence of good buddypress-specific books, you can learn a lot by looking at existing plugins and the codex.
February 16, 2010 at 9:35 pm #63599In reply to: BuddyPress Links 0.3-beta released for testing
modemlooper
ModeratorGot it!… stupid eager beaver I am. Just thought of something. This would be a killer feature if you could do a browser type thing like the admin press-it. So when you are on youtube you hit the bookmark and it pops an input box.
February 16, 2010 at 9:27 pm #63598In reply to: how to query the categories of posts?
Paul Wong-Gibbs
KeymasterAnd this is nothing to do with BuddyPress.
February 16, 2010 at 9:22 pm #63596In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
ParticipantThis is the development version zip. It will always contain the latest trunk. Normally this is not recommended, but you guys seem to really want to play with it so ymmv.
February 16, 2010 at 9:21 pm #63593In reply to: BuddyPress Links 0.3-beta released for testing
modemlooper
ModeratorI went to the link above and downloaded the latest. Is that not the right place to download?
EDIT duh stupid me i didnt realize the text development version was the one to download LOL!
February 16, 2010 at 9:13 pm #63591In reply to: BuddyPress Links 0.3-beta released for testing
bennyticklez
Member@MrMaz yes. i select “humor” and input a url. That’s when the error happens.
February 16, 2010 at 9:06 pm #63586In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
ParticipantThank you. Apparently that function was removed from the core at some point and I missed it. I just commited a fix for that. Wait a while for the development version zip to update, then try downloading again.
Are you selecting a category? That is required too.
I can tell by the error I got on one of your pages that you are not using the latest dev version of links.
February 16, 2010 at 8:52 pm #63584In reply to: BuddyPress Links 0.3-beta released for testing
modemlooper
Moderatorclick the links link throws up error
but when I activate a child theme then when you click links it redirects to home page.
February 16, 2010 at 8:51 pm #63583In reply to: Making activity default page
r-a-y
KeymasterFebruary 16, 2010 at 8:45 pm #63579In reply to: White Screen! Ugh…
chewdogg10
MemberCould there be a path in the database that got messed up that it’s not linking correctly to buddypress?
Thanks,
Chew
February 16, 2010 at 8:42 pm #63578In reply to: 1.2 plug-ins list
r-a-y
KeymasterThe WordPress plugins repository is primarily for WordPress plugins!
Maybe Andy can code something to check a plugin’s meta for some new parameters on buddypress.org/extend/plugins?
FYI, my oEmbed plugin for BP 1.2 is coming either today or tomorrow
February 16, 2010 at 8:38 pm #63577In reply to: Default theme with widgetized home page
modemlooper
ModeratorYou could code a theme to force a widgetized homepage but I think it always better to have options. By using a page template you can include different home page layouts. I just transferred the classic home page over.
A test site
February 16, 2010 at 8:19 pm #63575In reply to: Digging the new homepage!
stripedsquirrel
ParticipantHi Andy,
I meant that there is no home.php template file as there was before, with some nice standard widget areas, making it easier to have a hmepage/landing page or whatever you want to call it.
But it is no big deal.
Ah, I just got a message from Modemlooper, as he already did something, thanks ML

https://buddypress.org/forums/topic/default-theme-with-widgetized-home-page
Cheers, Harry
February 16, 2010 at 8:13 pm #63574In reply to: 1.2 plug-ins list
Mark
ParticipantThanks for starting this list. There’s another forum list of broken bp 1.2 plugins but I can’t find it now. It would be a nice feature if BP Plugins pages allowed for some sort of commenting or rating of ‘works with 1.2’, etc. I know wordpress.org offers this (and that’s where the plugins are actually hosted) but buddypress.org is typically more active with current information. Right or wrong most comments regarding buddypress plugins are found here.
I haven’t spent enough time with 1.2 to say with certainty what’s working. I can say the following are Not for me:
Group Blog
Group Forum Subscription
Welcome Pack
Invite Anyone
-
AuthorSearch Results