Hi!
BuddyPress 7.3.0 is available, please upgrade asap 👉 https://buddypress.org/2021/04/buddypress-7-3-0-maintenance-security-release/
Hi!
BuddyPress 7.3.0 is available, please upgrade asap 👉 https://buddypress.org/2021/04/buddypress-7-3-0-maintenance-security-release/
Hi!
Please join our development meeting tomorrow April 14 at 19:30 UTC. It will happen in #BuddyPress. During 30 minutes, we will discuss about our progress on the 8.0.0 milestone. As a reminder, the first beta is scheduled for next week 😱. Here’s the 8.0.0 schedule:
We’ll need to make a decision about including the network/community invite feature (#8139) into 8.0.0 release. If we’re very close to be ready we might postpone the beta release by a week, otherwise, we’ll postpone the feature to next major release.
If you have specific/additional points you need to discuss about, please share them into the comments area of this post.
@vapvarun shared the latest plugin he submitted to w.org Plugins Directory. If you’re looking for a nice way to preview any links into your activities, give it a try 😉
It will happen on April 14 at 19:30 UTC and of course in #BuddyPress. If you have ideas or questions, feel free (and we are strongly encouraging you) to comment this summary to share them!
We’ve been working hard on our sides during the last 2 weeks, let’s come together and share about our progress during today’s meeting March 31 at 19:30 UTC. It will happen in #BuddyPress. We’ll have 30 minutes to discuss about the 8.0.0 milestone. As a reminder, here’s the 8.0.0 schedule:
If you have specific/additional points you need to discuss about, please share them into the comments area of this post.
The BuddyPress xProfile component gives you the power to easily create as many profile fields as you wish and to organize these fields into groups of fields. So far there was only one field which was linked to an existing WordPress user field : the base Name field. This field’s data is synchronized with the WordPress user display name (unless you opt out this synchronization from the BuddyPress Options Administration screen).
In BuddyPress 8.0.0, you’ll have the extra power to include other WordPress fields into the xProfile groups of fields. This time, unlike what we’re doing for the Name field, we are not duplicating and synchronizing field values between the WordPress user field tables (the wp_users
& the wp_usermeta
ones) and the BuddyPress xProfile data table). Instead we are directly using the WordPress user field values.
Creating these new field types, we’ve also improved our xProfile field API so that you can now have more control about the features your custom type of field can support.
/**
* Custom xProfile field type.
*/
class Custom_XProfile_Field_Type extends BP_XProfile_Field_Type {
/**
* This property enforces Field's default visibility.
*/
public $visibility = 'public';
/**
* Supported features for the WordPress field type.
*/
public static $supported_features = array(
'required' => false,
'do_autolink' => false,
'allow_custom_visibility' => false,
'member_types' => false,
);
}
Using the static $supported_features
property, you can disable the corresponding features meta boxes from the xProfile Administration Screen. The above example is showing the supported features by the WordPress fields : as defined by WordPress, these fields cannot be made required, cannot have their visibility changed for something different than public and cannot be restricted to a member type. Below are the values used by default for any xProfile field type.
A regular xProfile field can be made required, can be restricted to a specific member type, can be set to let members define the field data visibility and can be auto linked to a members search request about the field value.
wp-biography
The first type is specially designed to let you include the biographical information of the user into the group of xProfile fields of your choice.
wp-textbox
Using this type of field, you can insert the first name, the last name, the website URL and the potential WordPress User Contact Methods you added. Once you created your wp-textbox
field, you’ll just need to use the advanced meta box below the field’s description textarea to select the information to include into the group of fields of your choice.
The video below will show you how to create a new field to add/edit the Member’s website URL and the Biographical information directly from their front-end profile.
If you want to read the full story about these new xProfile field types, head over to this ticket on our Trac environment.
It will happen on March 31 at 19:30 UTC and of course in #BuddyPress. If you have ideas or questions, feel free (and we are strongly encouraging you) to comment this summary to share them!
Hi everyone, sorry this summary is published very late (the day we’re having another development meeting). We’ve been working hard on improving the security of BP REST API fixing some vulnerabilities. The BuddyPress 7.2.1 security release was published yesterday and we strongly encourage you to update your copy of BuddyPress, from versions 5.0.0 to version 7.2.0, to this 7.2.1 version. If you are using the BP REST plugin, make sure to merge your branches with upstream’s master, 0.3, 0.2 or 0.1 branch to get these fixes into your clones.
It will happen on March 17 at 19:30 UTC (in a few minutes 😱 ) and of course in #BuddyPress. Here’s our agenda :
Let’s focus on 8.0.0! We have 2 weeks left before first beta.
Hi!
Please, make sure to update BuddyPress to 7.2.1 to apply the security patches included in it.
👉 https://buddypress.org/2021/03/buddypress-7-2-1-security-release/
Hi!
Please join our development meeting tomorrow March 3 at 19:30 UTC. It will happen in #BuddyPress. During 30 minutes, we will discuss about our progress on the 8.0.0 milestone. As a reminder, the first beta is scheduled for the end of the month 😱. Here’s the 8.0.0 schedule:
If you have specific/additional points you need to discuss about, please share them into the comments area of this post.
It was released just after the dev-chat. Its main goal is to fix an ugly issue about the BP Nouveau twentytwentyone.css
companion stylesheet (See #8425). Some other tickets relative to this companion stylesheet has been fixed and added to the release.
PS: about #8001, At/Who libraries contain some deprecated jQuery code and @im4th thinks we should try to keep the Mentions autocompleter to show in tinyMce as it is used into the BP Nouveau Messages UI.
It will happen on March 3 at 19:30 UTC and of course in #BuddyPress. If you have ideas or questions, feel free (and we are strongly encouraging you) to comment this summary to share them!