-
Mathieu Viet replied to the topic What do you expect from 14.0.0? in the forum Ideas 9 months, 3 weeks ago
Hi @gomle
Thanks a lot for your feedback. About Notifications, I believe using the Notification Web API can improve your “pulling the user to the site” need.
Hi @oumz99
I agree we should look into import/export. To comply with GDPR, users can export the data they created on the site from their profile settings. But a more global tool would be…[Read more]
-
Mathieu Viet replied to the topic BuddyPress 12.1.1 Maintenance & Security Release in the forum Miscellaneous 10 months, 1 week ago
Hi @priyam1234
Thanks for your feedback 😍. My company has nothing to do with WordPress actually, I don’t make a living with code. I’m a hobbyist and contribute freely to BuddyPress, just like the other members of the team.
For everyone reading this topic:
Quick update about the 12.1.1 issue reported by @manni65929 when first installing…[Read more] -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 10 months, 1 week ago
Hi @priyam1234
I’m aware of the issue, see: https://buddypress.org/support/topic/buddypress-12-1-1-maintenance-security-release/
I’m currently working on it from https://buddypress.trac.wordpress.org/ticket/9075. I need to make sure the fix is taking care of all possible cases, which means a lot of tests.
As soon as I have something solid I’ll…[Read more]
-
Varun Dubey replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 10 months, 1 week ago
@priyam1234 as an immediate solution, you can define the following inside wp-config.php
define('BP_LOAD_DEPRECATED', true);
You can place this line anywhere in the wp-config.php file, but it’s typically a good practice to add it just before the line that says
/* That's all, stop editing! Happy publishing. */.
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 10 months, 3 weeks ago
Hi @priyam1234
I’m not sure to understand what you’re trying to do, but if you need to force the BP Directories metabox to be shown in the Nav Menus Admin Screen, you can try that:
[Read more]
function priyam1234_hidden_meta_boxes( $hidden, $screen ) {
if ( isset( $screen->id ) && 'nav-menus' === $screen->id ) {
$hidden = array_diff( $hidden, array(… -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 10 months, 4 weeks ago
This will be fixed in next minor version (12.1.0). The tool to reset slugs will now delete
buddypress
post types that are not used for directory pages. See: https://buddypress.trac.wordpress.org/changeset/13680For now you can look into your database
{wp_table_prefix}options
table the value of the option name'bp-pages'
to know thebu…
[Read more] -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months ago
Hi @priyam1234
Cool, thanks for your feedback.
I was about to point you to the update they did 21 hours ago: https://plugins.trac.wordpress.org/changeset/3013040
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months ago
Hi @awol
Thanks for your initiative, a possible way to find it is to download your
/wp-content
directory and use a code/text editor like vscode and use their “Search in directory” feature.Hi @priyam1234
Really happy you found the way to fixing your issues 👍.
Hi @cristan17
Sorry to read about the issues you’re facing.
The first thing I…[Read more]
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months ago
Hi @priyam1234
Well we are not using Post IDs to decide what content should be displayed but URI globals that can be accessed through these functions : https://github.com/buddypress/buddypress/blob/master/docs/developer/functions/uri-globals.md
The post ID is reset to 0 when you reach a BuddyPress page to avoid PHP notices. There’s a new way t…[Read more]
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months, 1 week ago
Hi @priyam1234
You can use
bp_get_directory_title( $component_id )
eg:bp_get_directory_title( 'activity' )
. -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months, 1 week ago
Hi @priyam1234
Can you test the following code to see if that’s enough for ACF to load it’s fields UI?
function priyam1234_generate_post_type_ui( $args = array() ) {
$args['show_ui'] = current_user_can( 'manage_options' );
return $args;
}
add_filter( 'register_buddypress_post_type_args', 'priyam1234_generate_post_type_ui' );
About your…[Read more]
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months, 1 week ago
Hi @priyam1234 about ACF, the thing is we don’t use a UI to edit BP directory pages. As anyway we never used the content of the
page
post type for BuddyPress content, now we’ve migrated to abuddypress
post type we’re not generating the corresponding UI in WP Admin. I’m going to look at it to see how we can integrate ACF with our new way of deal…[Read more] -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 11 months, 1 week ago
Hi @priyam1234
I guess you found how to get back to « classic » pages for BuddyPress directories (installing and activating BP Classic). That’s the way you will find also back your need to use ACF with it.
About your second reply I’m not sure to understand what you mean about the functionality you’d like to use in BuddyPress Classic and that…[Read more]
@priyam1234
Active 11 hours, 27 minutes ago