Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,151 through 58,175 (of 69,017 total)
  • Author
    Search Results
  • #63621
    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

    #63620
    myislamicblog
    Participant

    Problem Solved, the problem was comming from old buddypress theme compatibility and some custom changes.

    Thanks anyways.

    #63619
    modemlooper
    Moderator

    wp-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.

    #63614

    In reply to: 1.2 plug-ins list

    Peter Anselmo
    Participant

    Group 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.

    #63613
    MrMaz
    Participant

    @Modemlooper

    Yeah, its confusing how the dev version link is all the way at the bottom!

    @r-a-y

    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

    @everyone

    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.

    #63611
    Andrea Rennick
    Participant

    BuddyPress for Dummies is out or almost out. Also the WordPress Bible, Digging into WordPress and WordPress for Dummies.

    #63608
    Brajesh Singh
    Participant

    hi 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.

    #63607
    r-a-y
    Keymaster

    https://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!

    #63605
    rich! @ etiviti
    Participant

    This 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!

    #63603
    r-a-y
    Keymaster

    I 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!

    #63602
    Mark
    Participant

    I’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

    #63600
    Peter Anselmo
    Participant

    Can’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.

    #63599
    modemlooper
    Moderator

    Got 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.

    #63598
    Paul Wong-Gibbs
    Keymaster

    And this is nothing to do with BuddyPress.

    #63596
    MrMaz
    Participant

    This 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.

    https://downloads.wordpress.org/plugin/buddypress-links.zip

    #63593
    modemlooper
    Moderator

    I 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!

    #63591
    bennyticklez
    Member

    @MrMaz yes. i select “humor” and input a url. That’s when the error happens.

    #63586
    MrMaz
    Participant

    @geoffm33

    Thank 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.

    @bennyticklez

    Are you selecting a category? That is required too.

    @Modemlooper

    I can tell by the error I got on one of your pages that you are not using the latest dev version of links.

    #63584
    modemlooper
    Moderator

    http://tempsg.com/buddypress/

    click the links link throws up error

    but when I activate a child theme then when you click links it redirects to home page.

    #63583
    r-a-y
    Keymaster
    #63579

    In reply to: White Screen! Ugh…

    chewdogg10
    Member

    Could there be a path in the database that got messed up that it’s not linking correctly to buddypress?

    Thanks,

    Chew

    #63578

    In reply to: 1.2 plug-ins list

    r-a-y
    Keymaster

    The 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 ;)

    #63577
    modemlooper
    Moderator

    You 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

    http://tempsg.com/buddypress

    #63575
    stripedsquirrel
    Participant

    Hi 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

    #63574

    In reply to: 1.2 plug-ins list

    Mark
    Participant

    Thanks 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

Viewing 25 results - 58,151 through 58,175 (of 69,017 total)
Skip to toolbar