-
@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 […]
-
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 […]
-
@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 […]

-
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]
-
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 ); -
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
$argumentsvariable in my code for the required by youactivity_type.You can put the resulting code into a separate custom plugin or in https://codex.buddypress.org/themes/bp-custom-php/
-
Morrow Landes's profile was updated 9 years, 3 months ago
-
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]
-
metalhead's profile was updated 9 years, 3 months ago
-
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.phpfile in your theme
2) find in that file atextareawithid="whats-new"and addmaxlength="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] -
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).
-
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 inbp-custom.phpor in your child themefunctions.php.The problem might be with styling for Admin Bar. Just a guess.
-
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.
-
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.
-
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] -
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]
-
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]
-
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.
-
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_bodyhook to filter that function’s output. -
Siddharth's profile was updated 9 years, 3 months ago
- Load More