Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of @mercime

    @mercime updated the Installation in WordPress Multisite page, on the BuddyPress Codex 9 years, 3 months ago

    Before installing BuddyPress, please make sure that you’ve checked the minimum server requirements and WordPress version compatibility.

    You can install BuddyPress in your Network (multisite) in either of the […]

  • Profile picture of Slava Abakumov

    Slava Abakumov wrote a new post on the site BuddyPress.org 9 years, 3 months ago

    BuddyPress 2.8.0 Release Candidate 1 is now available for testing. Please download the 2.8.0-RC1 zip or get a copy via our Subversion repository.

    This is our last chance to find any bugs that slipped through th […]

  • Profile picture of @mercime

    @mercime updated the BP Theme Compatibility and the WordPress Default Themes page, on the BuddyPress Codex 9 years, 3 months ago

    BuddyPress is compatible with all of the WordPress Default Themes. This section will provide you with step-by-step tutorials to make all your BuddyPress pages conform with the layout you want using child […]

  • Profile picture of Mike Gillihan

    Mike Gillihan replied to the topic Hidden Groups and Forums not showing for members of them in the forum How-to & Troubleshooting 9 years, 3 months ago

    Old thread, but here’s a possible fix that worked for me.

    The hidden groups in the Groups list have the class “hidden” applied which is a fairly common CSS pattern for hiding content. I added a CSS override as a workaround.

    #groups-list .hidden {
    display: list-item !important;
    visibility: visible;
    }

    Really, in this case, I think BP…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Echo slug of custom nav component in the forum Creating & Extending 9 years, 3 months ago

    You can define the slug when you call the bp_core_new_nav_item() function. For example:

    // Define slug in args array.
    $args = array(
    'slug' => 'foo'
    );
    bp_core_new_nav_item( $args );

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Email all users of updated Forums in the forum Creating & Extending 9 years, 3 months ago

    Sure, you will need to filter out the $arguments variable in my code for the required by you activity_type.

    You can put the resulting code into a separate custom plugin or in https://codex.buddypress.org/themes/bp-custom-php/

  • Profile picture of Morrow Landes

    Morrow Landes's profile was updated 9 years, 3 months ago

    Morrow Landes

    @orrowandesty

    View Profile
  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Email all users of updated Forums in the forum Creating & Extending 9 years, 3 months ago

    That is not CSS, that is PHP.

    And no, there is nothing to do with Forums in my code, as in your initial post you wrote this:

    Is there a way to send a notification email EVERY time there is an update, regardless of whether or not they have been mentioned or have liked the post.

    So my code will send an email (but you will need to write down its…[Read more]

  • Profile picture of metalhead

    metalhead's profile was updated 9 years, 3 months ago

    metalhead

    @aaronthomas1979

    View Profile
  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Groups: How to limit max length of posts and replies. in the forum Third Party Plugins 9 years, 3 months ago

    Super easy solution is to do like this:

    1) find or create a buddypress/activity/post-form.php file in your theme
    2) find in that file a textarea with id="whats-new" and add maxlength="143" to its attributes so it will become something like this:
    <textarea class="bp-suggestions" maxlength="143" name="whats-new" id="whats-new" cols="50"…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Group join the Group in the forum Creating & Extending 9 years, 3 months ago

    Team is a BuddyPress group.
    League – is the group type, read about it here: https://codex.buddypress.org/developer/group-types/

    This might be helpful for you too: https://codex.buddypress.org/add-custom-tab-to-groups-directory/ (leagues as tabs in groups/teams directory).

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Extra space between menu and top – No idea what to do! in the forum How-to & Troubleshooting 9 years, 3 months ago

    Try this add_filter('show_admin_bar', '__return_false');. Put it in bp-custom.php or in your child theme functions.php.

    The problem might be with styling for Admin Bar. Just a guess.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic BuddyPress on Multisite in the forum How-to & Troubleshooting 9 years, 3 months ago

    I think, you can’t do that easily.

    Reason: BuddyPress activated and is working on subsite 1, where all of its tables created. Subsite 2 is completely independent site with even own list of users.

    To fix this: you will need to write quite heavy bridge, that will query the subsite 1 and asks each time whether user has there what you need on subsite 2.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic buddypress activity stream restructuring the gravatar position in the forum Ideas 9 years, 3 months ago

    Can you please provide some screenshots? Your idea is not very clear to me.

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Relational Fields between two types of members in the forum How-to & Troubleshooting 9 years, 3 months ago

    Your task is a compilation of several steps.

    1) You need to add a custom field to BuddyPress registration form
    See this https://buddypress.org/support/topic/how-to-display-a-custom-field/ or similar (just google).

    2) You need to get the list of users by a member type to display in a <select> field created in 1).
    See…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Email all users of updated Forums in the forum Creating & Extending 9 years, 3 months ago

    Yes, you can use a hook in a function bp_activity_add() called the same.

    /**
    * Fires at the end of the execution of adding a new activity item, before returning the new activity item ID.
    *
    * @since 1.1.0
    *
    * @param array $r Array of parsed arguments for the activity item being added.
    */
    do_action( 'bp_activity_add', $r );

    So you should…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Real time activity feed that updates the old activities in the forum How-to & Troubleshooting 9 years, 3 months ago

    Currently there is no such plugin. Introducing this feature is quite heavy for the server, so it’s more like a custom solution, ideally with websockets.

    We use heartbeat functionality, that gives ability to show a notification about new activity records, but there are no plans to actually update old records due to lots of technical issues and…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Migration Ning to Buddypress in the forum Installing BuddyPress 9 years, 3 months ago

    You can check this plugin: https://premium.wpmudev.org/project/ning-to-buddypress-user-importer/

    But before buying it’s better to contact their support and ask about compatibility.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Is there a way to modify the output of bp_activity_content_body() in the forum Creating & Extending 9 years, 3 months ago

    Hey!

    You can use the bp_get_activity_content_body hook to filter that function’s output.

  • Profile picture of Siddharth

    Siddharth's profile was updated 9 years, 3 months ago

    Siddharth

    @siddkol

    View Profile
  • Load More

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In