Skip to:
Content
Pages
Categories
Search
Top
Bottom

What happened to these Buddypress Plugins?


  • prettyhopeful
    Participant

    @prettyhopeful

    Hi, it’s been a awhile since I’ve used Buddypress but I am using it currently for a new project. I noticed lots of plugins missing from the WordPress repository such as Buddypress Extended Settings that allows you to remove /members/ from profile url and rearrange/hide profile tabs. Also, I can’t find the plugin that makes the Buddypress community private to non-logged in users. And there was one that added Buddypress menu to the main site navigation.

    Where did they go? Are these options being added into the new Buddypress?

    Pray tell. Thanks.

Viewing 14 replies - 1 through 14 (of 14 total)

  • bp-help
    Participant

    @bphelp

    @prettyhopeful

    @modemlooper
    removed buddypress extended settings from the repo and made one premium plugin called BuddySuite that has more features than the plugin that was in the repo. I think this also covers adding the profile menu to the main nav as well You can get it here:
    http://shop.taptappress.com/downloads/category/plugin/
    For the private community you can get that here:
    https://github.com/bphelp/private_community_for_bp
    Cheers!


    Mr Bronze
    Participant

    @mr-bronze

    please i need one that can remove buddypress responsive feature from my themes. how do i download it


    aces
    Participant

    @aces

    @mr-bronze

    You could try putting the following in you child theme functions.php file

    function bbg_enqueue_styles() {
    remove_theme_support( 'bp-default-responsive' );
    }
    add_action( 'wp_enqueue_scripts', 'bbg_enqueue_styles', 5 );

    For more info ( including important details ) see: https://buddypress.trac.wordpress.org/ticket/3881#comment:2

    ——————————————————————————————–

    EDIT: I’ve just noticed that you have been told this answer before: https://buddypress.org/support/topic/upgraded-and-now-nav-and-sidebar-is-responsive/#post-150007

    Please start your own Topic, rather than jump in on others, which can get confusing for those trying to fix a different problem.

    In your New Topic please describe more thoroughly the actual problem you personally are having and what you have already tried, including links to the theme, plugin, snippet or tutorial etc., ( if possible, practical or appropriate )?


    1a-spielwiese
    Participant

    @1a-spielwiese

    @ bp-help:

    The links don’t work anymore:

    http://shop.taptappress.com/downloads/category/plugin/

    https://github.com/bphelp/private_community_for_bp

    Actually I’m searching a plugin, that allows to change the sequence of the profile tabs (I would like to start with “Profile”, and not with “Activity”).


    bp-help
    Participant

    @bphelp

    @1a-spielwiese
    Free code snippet
    http://bp-tricks.com/snippets/code/arrange-group-profile-navigation-menu/
    Premium plugin:
    http://sensibleplugins.com/
    I personally would use the code snippet because its FREE, it is not hard to implement in bp-custom.php or your themes functions.php


    1a-spielwiese
    Participant

    @1a-spielwiese

    Thank you!

    With the code not from the entry, rather with that from the comment of Rob (January 20, 2014 at 12:44 am) it works.

    Besides I would like to determine that the first information about any “member”, which is displayed, is not “activity”, rather “profile”. – Exists for that a solution as well?

    (Currently only the sequence of the tabs is changend, but not the sequence of what is shown at first – it’s still “activity”, and not “profile”.)


    1a-spielwiese
    Participant

    @1a-spielwiese

    I’m still interested in a solution for that:

    Besides I would like to determine that the first information about any “member”, which is displayed, is not “activity”, rather “profile”. – Exists for that a solution as well?

    (Currently only the sequence of the tabs is changend, but not the sequence of what is shown at first – it’s still “activity”, and not “profile”.)

    Cfr.: http://1a-spielwiese.de/members/balletttaenzerinnenkrzbg36/


    danbp
    Moderator

    @danbp


    1a-spielwiese
    Participant

    @1a-spielwiese

    Thank you.

    With inserting it to the config.php it works.

    But via creating a bp-custom.php it causes only above to blog header the line:

    /** * Change BuddyPress default Members landing tab. */ define(‘BP_DEFAULT_COMPONENT’, ‘profile’ );

    Cfr. again: http://1a-spielwiese.de/members/balletttaenzerinnenkrzbg36/


    danbp
    Moderator

    @danbp

    Did you something wrong with bp-custom.php ?


    1a-spielwiese
    Participant

    @1a-spielwiese

    1st:

    Yes, I did not inserting at the beginning of the bp-custom.php:

    <?php
    // hacks and mods will go here
    ?>

    I would like to suggest to set there (and at all similar places) links from “bp-costum.php” to https://codex.buddypress.org/themes/bp-custom-php/

    2nd:

    But even after inserting the three above mentioned lines it does not work.

    3rd:

    With that code I had yesterday the same problem: It worked with inserting the code into the functions.php of my theme folder, but it works not with inserting it – as suggusted there – to bp-custom.php.

    4th:

    a) Currently the name of the file is:

    bp-custom.php

    b) It is placed within the folder wp-content/plugins (not inside the buddypress folder; rather on the same level as the buddypress folder).

    c) The entire content of the file is:

    
    <?php
    // hacks and mods will go here
    ?>
    
    function bbg_change_profile_tab_order() {
    global $bp;
    
    $bp->bp_nav['profile']['position'] = 10;
    $bp->bp_nav['activity']['position'] = 20;
    $bp->bp_nav['blogs']['position'] = 30;
    $bp->bp_nav['friends']['position'] = 40;
    $bp->bp_nav['messages']['position'] = 50;
    $bp->bp_nav['groups']['position'] = 60;
    $bp->bp_nav['settings']['position'] = 70;
    }
    add_action('bp_setup_nav', 'bbg_change_profile_tab_order', 999 );
    
    /**
     * Change BuddyPress default Members landing tab.
     */
    define('BP_DEFAULT_COMPONENT', 'profile' );

    d) I changed the wp-config.php and the functions.php back to their old versions. But it still does not work:

    The code of the bp-custom.php appears above the header of blog:

    http://1a-spielwiese.de/members/balletttaenzerinnenkrzbg36/

    and the “Activity”-Tab and it’s content is displayed at first.


    danbp
    Moderator

    @danbp

    Sorry to tell you that, but you did it wrong ! All your code in bp-custom is outside of php scope.
    You have to learn a bit around php basics to distinguish between code and comments.

    You also opened other topics here about bp settings, who let think that you have many troubles to use BP correctly. IMHO it’s a problem between chair and keyboard and great lack of understanding. Read attentively the doc first and don’t procrastinate too much about the why and the how. 😉

    When it is written // hacks and mods will go here, you add hacks and mods at that place, and NOT above or below or outside of the <?php .... ?> tags !

    So to do it right in bp-custom (and not costum).php

    <?php
    
    /* my tab order settings */
    function bbg_change_profile_tab_order() {
    global $bp;
    
    $bp->bp_nav['profile']['position'] = 10;
    $bp->bp_nav['activity']['position'] = 20;
    $bp->bp_nav['blogs']['position'] = 30;
    $bp->bp_nav['friends']['position'] = 40;
    $bp->bp_nav['messages']['position'] = 50;
    $bp->bp_nav['groups']['position'] = 60;
    $bp->bp_nav['settings']['position'] = 70;
    }
    add_action('bp_setup_nav', 'bbg_change_profile_tab_order', 999 );
    
    /* my members landing tab */
    define('BP_DEFAULT_COMPONENT', 'profile' );
    
    ?>

    1a-spielwiese
    Participant

    @1a-spielwiese

    Perfect!

    1st:

    “When it is written // hacks and mods will go here, you add hacks and mods at that place, and NOT above or below or outside of the <?php …. ?> tags !”

    It would be nice to mention there within the description of the code, that

    <?php

    marks the beginning

    and that

    ?>

    marks the end of the file.

    2nd:

    “great lack of understanding”

    It would be nice as well to place somewhere on the start page of http://buddypress.org a highlighted link to a section like “You want not only to use BuddyPress as it is, but also to change it’s appearance and code. HERE you find the most basic information regarding the structure and functiong of BuddyPress.”


    danbp
    Moderator

    @danbp

    Feel free to contribute to BuddyPress Codex.
    Write your stuff and submit a new page content. If it is correcly explained and done, maybe a dev will agree to it and publish your contribution.

    About

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘What happened to these Buddypress Plugins?’ is closed to new replies.
Skip to toolbar