Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,076 through 58,100 (of 68,950 total)
  • Author
    Search Results
  • #63636
    D Cartwright
    Participant

    Btw, this is another perfectly executed plugin release :p You’d have thought I would have learned from the group activity stream notifications plugin….

    #63635
    D Cartwright
    Participant

    Important update:

    I missed some folder name changes in a couple of the includes (damn wordpress repository and it’s fancy “being organised” behaviour!).

    As such, please download the plugin again. Alternatively, you can edit bp-groupwiki-main.php and do a find+replace on the following:

    FIND: ‘bp-groupwiki’

    REPLACE: ‘buddypress-group-wiki’

    This should solve the following errors you may have ran into:

    1) No TinyMCE

    2) No CSS for wiki page layout

    3) Frontend page creation not working

    Sorry for the hassle and thanks again to those that have provided feedback :)

    #63634
    rich! @ etiviti
    Participant

    I’m 85% certain this was all the changes I made to the core files ;-)

    http://blog.etiviti.com/2010/02/forcing-buddypress-to-use-user_nicename-for-member-urls-and-mentions/

    #63631

    In reply to: 1.2 plug-ins list

    stwc
    Participant

    Just tried External Group Blogs on a localhost.localdomain XAMPP install (really need those RSS feeds before I make the jump to 1.2) and it failed when creating a group at the Add RSS feeds stage with the following errors

    Warning: array_map() [function.array-map]: Argument #2 should be an array in D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 2454

    Warning: Cannot modify header information – headers already sent by (output started at D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 1107

    Warning: Cannot modify header information – headers already sent by (output started at D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 1108

    Warning: Cannot modify header information – headers already sent by (output started at D:\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in D:\xampp\htdocs\community\wp-includes\pluggable.php on line 868

    #63630
    Anonymous User 96400
    Inactive

    yep, 10% IE6 is about all I’m getting on all my personal sites, so I stopped going out of the way to cater for it. so, time to start pushing the envelope a little bit maybe? as of yet, i’m still undecided, so for now i’ll stay put…

    #63629
    r-a-y
    Keymaster

    That’s right, Mike.

    David Aubin’s port of BlueImp’s AJAX Chat to BP has group functionality:

    https://wordpress.org/extend/plugins/buddypress-ajax-chat/

    The original chat interface isn’t polished enough though and the actual port by Dave has its bugs.

    I currently have a v1.2 “re-port” of BlueImp’s AJAX Chat working on my test server. It functions well, but outputs quite a few warnings and notices in the server log! If I can get it to a stable state without the warnings, I might release it.

    If there’s a better, open-source chat plugin that supports multiple rooms, that would be another option!

    #63627

    In reply to: BuddyPress Geo plugin

    Unsal Korkmaz
    Participant

    is BP Member Map working with 1.2?

    #63622
    Mike Pratt
    Participant

    @Xevo IE6 is only used by 10% of folks http://www.w3schools.com/browsers/browsers_stats.asp

    I can’t stand any version of IE myself :-)

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

Viewing 25 results - 58,076 through 58,100 (of 68,950 total)
Skip to toolbar