-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months ago
Hi @legiosmoke
Thanks for your feedback. I’ll test the Astra Theme version that is available on the Theme directory to see if all images are disappearing once BuddyPress is activated.
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months ago
About @lmstearn‘s issue, I’ll work on it from this GH issue: https://github.com/buddypress/bp-classic/issues/34
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months ago
I’m sorry @legiosmoke I can’t reproduce this issue, everything works fine on my side. Have you tried deactivating completely BuddyPress then BP Classic to see it this was fixing the issue?
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months 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 forum freshness not working in v12 in the forum How-to & Troubleshooting 1 year, 3 months ago
Hi sorry to read about this issue. bbPress is not ready for BuddyPress 12.0. You need to activate BP Classic:
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
So 😅. Thanks for sharing the error log. To me, deprecation notices cannot be the source of your troubles. For bbPress you need BP Classic as it’s not ready for BP 12.0.0. I submitted a patch to their Trac env. but it has not been committed yet.
Even if BP Classic is active, your links are logging you out?
There’s only 2 way to get this beh…[Read more]
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
I’m sorry, I’m too afraid to break things: I never do that.
I wonder if it could be a malformed link
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
Ouch, it will probably generate a fatal, but maybe we’ll get more information to trace which plugin is using this deprecated function.
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
This last one is more helpful. Are you sure BP Classic is active? Because if active BuddyPress shouldn’t add this depreciation notice.
What happens if you add this code to your wp-config.php?
define( 'BP_IGNORE_DEPRECATED', true );
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
I believe you’re looking in the wrong direction: if clicking on Notifications or Messages from the top left admin panel is logging you out, it’s not a WP Nav Menu.
Have you tried clicking on these links being in WP Admin?
-
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
It was not logging you out with version 11.4.0 of BuddyPress?
Can you rollback to 11.4.0 keeping BP Classic active to see if that solves the issue?
Elementor’s reply is amazing, considering the price you pay for support, the fact we can’t test on our side because it’s a premium plugin and they can test on their side as Buddy…[Read more]
-
Mathieu Viet replied to the topic v12 removed bbcode buttons on reply box in the forum How-to & Troubleshooting 1 year, 3 months ago
Awesome, thanks a lot for your feedback 👌
-
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months ago
Slug constants were deprecated in version 1.5 of BuddyPress (more than 10 years ago). We decided to remove them from BuddyPress 12.0.0 as it’s now very easy to customize slugs.
Your error is interesting, if you look at it, you’ll see the theme
kleo
now generates this error while it wasn’t when BP Classic wasn’t active. It meanskleo
is…[Read more] -
Mathieu Viet replied to the topic BuddyPress 12.0.0 in the forum Miscellaneous 1 year, 3 months ago
Hi @cheesy2k
Sorry to read about this issue. It’s difficult to figure it out. We made an important change in 12.0.0 & although we communicated a lot there might be some third party BP plugins not ready yet for 12.0.0. That’s why we anticipated building this backcompat addon:
If you haven’t tried to ac…[Read more]
-
Mathieu Viet replied to the topic Slugs with -2 after update in the forum Installing BuddyPress 1 year, 3 months ago
Ok, I understand you don’t want to take the time to fix the issue. It’s really difficult to understand each other. Sorry to read my help is so annoying. You probably customized, the base prefix for your tables if the table is not called
wp_posts
, it’s probably due to the custom table prefix you defined into your wp_config.php file. The code I’ve…[Read more] -
Mathieu Viet replied to the topic how to edit register page for buddypress? in the forum Installing BuddyPress 1 year, 3 months ago
Here’s a way to disable BuddyPress signup feature:
[Read more]
function disable_bp_signups() {
add_filter( 'bp_get_signup_allowed', '__return_false' );
remove_filter( 'register_url', 'bp_get_signup_page' );
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
remove_filter( 'wp_signup_location', 'bp_blogs_creation_location' );
remove_filter(… -
Mathieu Viet replied to the topic How To Delete Register Page in the forum Installing BuddyPress 1 year, 3 months ago
Here’s a way to disable BuddyPress signup feature:
[Read more]
function disable_bp_signups() {
add_filter( 'bp_get_signup_allowed', '__return_false' );
remove_filter( 'register_url', 'bp_get_signup_page' );
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
remove_filter( 'wp_signup_location', 'bp_blogs_creation_location' );
remove_filter(… -
Mathieu Viet replied to the topic Slugs with -2 after update in the forum Installing BuddyPress 1 year, 3 months ago
Have you tried to temporarily add this code to the functions.php of your active theme?
remove_filter( 'wp_unique_post_slug', 'bp_core_set_unique_directory_page_slug', 10, 6 );
And then did you go to the URLs tab of the BuddyPress settings and try to customize slugs again?
If so, using your tool to administrate your site’s database (eg:…[Read more]
-
Mathieu Viet replied to the topic Slugs with -2 after update in the forum Installing BuddyPress 1 year, 3 months ago
So you’re using BP version 12.0 on a regular site (not a multisite config), you activated, then deactivated BP Classic because it was no more needed. And now when you go into the URLs tab of the BuddyPress settings and tries to customize slugs, it adds a
-2
suffix.Is it happening when these slugs are default BuddyPress ones only (eg:
activity
,me…
[Read more] -
Mathieu Viet replied to the topic Error in buddypress code bp-menu bp-logout-nav in the forum How-to & Troubleshooting 1 year, 3 months ago
Hi,
I just tested and I wasn’t able to reproduce, sorry. I don’t think it’s a BuddyPress problem. Have you tried to temporarily deactivate all plugins except BuddyPress to see if the issue was still there?
If so, maybe you can try to activate the BP Classic backwards compatibility plugin in case there’s a 3rd party BP plugin playing into this area.
- Load More
@imath
Active 2 months, 2 weeks ago