Search Results for 'buddypress'
-
AuthorSearch Results
-
December 17, 2023 at 12:30 am #332342
Mathieu Viet
ModeratorI’ve replied here: https://buddypress.org/support/topic/buddypress-12-0-0/page/4/#post-332340
December 17, 2023 at 12:15 am #332341In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @yatesa01
About this:
> The option in customizer to use round profile images is no longer present after updating to 12.0.It’s not an issue, we’re removed it on purpose, to avoid messing with the active Theme’s way of displaying an avatar.
https://buddypress.trac.wordpress.org/ticket/8273You can easily get it back using this CSS rule:
.buddypress-wrap .avatar { border-radius: 50%; }December 17, 2023 at 12:05 am #332340In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @bmoreau92
Thanks for your feedback.
I agree it’s weird.
BP Classic also brings back the BP Legacy widgets. The Latest Activities is one of them. But this widget is only available if the BP Nouveau Template pack is active. It looks like although it’s the case this template pack is not loaded which is causing the error because one of its functions is used by the Latest Activities widget.
I’ve tried to reproduce an issue but wasn’t able. As it’s a premium theme, I cannot see what’s wrong.
If you do not need this BP Legacy widget, you can simply unhook it and it should fix the issue. You can add the following code into a bp-custom.php file for example.
function flatsome_weird_option_bug() { remove_action( 'bp_widgets_init', array( 'BP_Classic_Templates_Nouveau_Latest_Activities', 'register_widget' ) ); } add_action( 'bp_after_setup_theme', 'flatsome_weird_option_bug', 6 );December 16, 2023 at 6:06 pm #332335In reply to: Member Nav Menu Items for WP6 FSE
emaralive
ModeratorI’ll try this again, the 1st attempt seems to have gone away (into moderation, perhap?), nevertheless, I’ll attempt to illustrate the how to add “Custom Link” via 2 (two) Screenshots. The following should illustrate how to add a “Custom Link” and illustrates a setup for BuddyPress Member Nav menu items.

The next Screenshot, hopefully, illustrates how to enter info into the “Label” and “URL” textboxes. The “me” in the URL is converted/replaced by whomever happens to be the current “logged-in user“.
December 16, 2023 at 2:09 pm #332332In reply to: BuddyPress 12.0.0
bmoreau92
ParticipantBuddyPress 12.0 function bp_core_get_user_domain deprecated
Hi !
Since version 12.0 I get a critical error.
WordPress debug mode gives me this message :
Deprecated: La fonction bp_core_get_user_domain est obsolète depuis la version 12.0.0 ! Utilisez bp_members_get_user_url() à la place. in /home/nudeoep/www/wp-includes/functions.php on line 6031I installed BP Classic and it resolves the problem.
BUT when I try to change the options of my Flatsome Theme, I don’t see the regular screen but this :
Dernières notes publiées (BuddyPress)
Titre :
Nombre max. à afficher :It’s weird !
Thanks in adavance four your help !
I received this message from WordPress :
WordPress a trouvé une erreur avec l’une de vos extensions, « BP Classic »
Une erreur de type E_ERROR a été causée dans la ligne 206 du fichier /home/nudeoep/www/wp-content/plugins/bp-classic/inc/templates/classes/class-bp-classic-templates-nouveau-latest-activities.php. Message d’erreur : Uncaught Error: Call to undefined function bp_nouveau_get_activity_filters() in /home/nudeoep/www/wp-content/plugins/bp-classic/inc/templates/classes/class-bp-classic-templates-nouveau-latest-activities.php:206
Stack trace:
#0 /home/nudeoep/www/wp-includes/class-wp-widget.php(535): BP_Classic_Templates_Nouveau_Latest_Activities->form(Array)
#1 /home/nudeoep/www/wp-admin/includes/widgets.php(276): WP_Widget->form_callback(Array)
#2 /home/nudeoep/www/wp-includes/class-wp-customize-widgets.php(1148): wp_widget_control(Array, Array)
#3 /home/nudeoep/www/wp-includes/class-wp-customize-widgets.php(1096): WP_Customize_Widgets->get_widget_control(Array)
#4 /home/nudeoep/www/wp-includes/class-wp-customize-widgets.php(714): WP_Customize_Widgets->get_available_widgets()
#5 /home/nudeoep/www/wp-includes/class-wp-hook.php(324): WP_Customize_Widgets->enqueue_scripts(”)
#6 /home/nudeoep/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array)
#7 /home/nudeoep/www/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
#8 /home/nudeoep/www/wp-admin/customize.php(123): do_action(‘customize_contr…’)
#9 {main}
thrownDetails of my configuration :
WordPress version 6.4.2
Thème actif : Flatsome (version 3.18.2)
Extension actuelle : BP Classic (version 1.2.0)
PHP version 8.0.30December 16, 2023 at 1:52 pm #332329bmoreau92
ParticipantHi !
Since version 12.0 I get a critical error.
WordPress debug mode gives me this message :
Deprecated: La fonction bp_core_get_user_domain est obsolète depuis la version 12.0.0 ! Utilisez bp_members_get_user_url() à la place. in /home/nudeoep/www/wp-includes/functions.php on line 6031I installed BP Classic and it resolves the problem.
BUT when I try to change the options of my Flatsome Theme, I don’t see the regular screen but this :
Dernières notes publiées (BuddyPress)
Titre :
Nombre max. à afficher :It’s weird !
Thanks in adavance four your help !
Bruno
December 16, 2023 at 12:41 pm #332328In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @priyam1234
Can you test the following code to see if that’s enough for ACF to load its 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 questions on BP URL functions, you can read this developer documentation resource which includes some examples of use for most of the described functions:
https://github.com/buddypress/buddypress/blob/master/docs/developer/functions/rewrites.mdDecember 16, 2023 at 11:43 am #332325In reply to: BuddyPress 12.0.0
Mathieu Viet
Moderatoryatesa01: I see from this other topic, it’s the Astra theme. I’m looking at it.
Here’s the ticket about the BP Blocks regression: https://buddypress.trac.wordpress.org/ticket/9037
December 16, 2023 at 9:22 am #332324In reply to: Member Nav Menu Items for WP6 FSE
Mathieu Viet
Moderator12.1.0 will be a minor release. There won’t be a 13.0.0 release just like the 13th floor often lacks in building. We’ll jump to 14.0.0 for our next major release.
How long will it take us to reach 14.0.0, it depends on the number of people who will contribute to it. 12.0.0 took us almost a year and 46 people contributed to it.
December 16, 2023 at 4:56 am #332320In reply to: BuddyPress 12.0.0
yatesa01
ParticipantAfter upgrading to 12.0 on our site, which went through without any errors, I’ve noticed several issues. We do have the legacy plugin in place. Some of the stuff is minor–the block that displays the most recent active users now displays a single vertical line of avatars instead of spacing it out nicely in a grid (though it looks fine from the page editor), the round avatars that had been in the Nouveau theme for user profiles are now gone, and the layout of the tabs on the user profile page are all messed up and don’t look as polished as they did before.
On the back end, I don’t see the new URL tab in BuddyPress settings page, just the old Pages tab.
December 15, 2023 at 7:20 pm #332316In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @nktine
Sorry to read about this issue, and thanks a lot for sharing your specific configuration.
Slug constants are deprecated since version 1.5.0 (meaning it’s been 12 years 3rd party plugins or themes should have stopped using them). Starting in 12.0.0, as slugs are totally customizable from the URL tabs of the BuddyPress settings screen, we’re not defining them anymore, that’s probably the reason of your fatal errors.
To solve this issue, you can try to define these constants from a bp-custom.php file for example, you’ll only get deprecated notices in this case. Let’s hope Grimlock will soon update his code
December 15, 2023 at 4:58 pm #332315In reply to: BuddyPress 12.0.0
nktine
ParticipantHello sorry for that but problems also on my side
When upgrading to BP12
1.I get a critical error if i try to change slug
2. when i try to access a link i got https://xx.org//membres-xx/userxBP_SETTINGS_SLUG
(same with BP_FRIENDS_SLUG, BP_GROUPS_SLUG, BP_MESSAGES_SLUG , BP_SETTING_SLUG) <== think this is due to the template custom menu..(template use Grimlock)
i use :
BP Classic
BP Maps for Members
BP Profile Search
BP xProfile Location
BuddyPress Docs
BuddyPress Extended Friendship Request
BuddyPress Group Chatroom
BuddyPress Group Email Subscription
Sélectionner BuddyPress Member Type Generator
BuddyPress Message Attachment
BuddyPress Profile Completion
BuddyPress Xprofile Custom Field Types(yes a lot of them but if it work form me it work for all 🙂
Thank for your work and your help
December 15, 2023 at 3:45 pm #332312In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorThe Pages tab of the BuddyPress settings has been replaced by the URLs one where you can customize all BP URLs slugs. Directories, registration/activate pages are now managed ged from there. See:
https://github.com/buddypress/buddypress/blob/master/docs/user/administration/settings/urls.mdIf you need to add some of these pages to your WordPress menus, I advise you to read:
https://github.com/buddypress/buddypress/blob/master/docs/user/administration/navigations/README.mdDecember 15, 2023 at 12:37 pm #332307In reply to: BuddyPress 12.0.0
mattobiwan1982
ParticipantHi
Can anyone tell me why when I enter the BuddyPress from WordPress settings it is not showing the Pages tab so I have no way of setting the registration, login pages etc?
Thanks
Matt
December 15, 2023 at 12:26 pm #332306In reply to: BuddyPress 12.0.0
erotmil
Participantwith that script on line 155 the function (buttons do work now), thanks
I try to stay in the loop with changes and helping documentation Buddypress as it develops.
Been using it over 14 years on this website, thanks againDecember 15, 2023 at 5:46 am #332302In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHere is how you can get involved with documentation:
https://github.com/buddypress/buddypress/tree/master/docs/contributor/documentationYou and everyone are very welcome to contribute.
December 15, 2023 at 5:39 am #332300In reply to: BuddyPress 12.0.0
Mathieu Viet
Moderator@erotmil this is a public forum, do not share access to your site. I never ask to log in to a user site, and I’ll never log in to edit a user site. I just deleted the access you shared in your previous reply.
Your custom page is out of BuddyPress scope. The only thing that has changed since 11.4.0 that could possibly interfere imho is the fact BuddyPress used to put its JavaScript and Styles everywhere on your site, including this page. You can try to use the gist the way I commented it to have these JavaScript and Styles back.
December 15, 2023 at 2:08 am #332297In reply to: BuddyPress 12.0.0
erotmil
ParticipantLogin as
on the website request page try and edit a request,
then to see how it does work, rollback to 11.40. you will see the rollback option in buddypress plugin . let me know what you think
ThanksDecember 14, 2023 at 5:52 pm #332285Topic: new update crashed my sites
in forum How-to & Troubleshootingbeachcalsix
ParticipantI have 3 websites and after the newest plugin update, the entire buddypress system crashed. All pages buddypress related give a fatal error screen. Activity, members page, profile, etc. I reverted back to the old version and it works fine again. I thought it was a plugin conflict but it is happening on multiple sites even fresh ones.
ThanksWordpress version: 6.4.2
Buddypress version with fatal error: 12.0.0
Buddypress version that works fine: 11.4.0December 14, 2023 at 4:32 pm #332282In reply to: No One is Receiving Email Notifications
njwebcreative
ParticipantThanks @vapvarun! I installed this plugin and tested the emails. I successfully received the email. I have WP SMTP mail set up as well, but people are still not getting email notifications from our BuddyPress group. Is this a “situation” thing from within BuddyPress? If so, I’m not sure how to create a situational email for group notifications.
December 14, 2023 at 2:47 pm #332279In reply to: BuddyPress 12.0.0
Mathieu Viet
Moderator@erotmil you can turn WP_DEBUG to false. Deprecated notices need to be addressed, but they are not responsible for the bug.
BP Classic can be activated before or after BuddyPress 12.0.0. In 11.4.0 we suggested to activate it so that the 12.0.0 migration task is short circuited, but it can be done after, it will simply revert the 12.0.0 migration task.
I’ll look at your HTML page asap.
December 14, 2023 at 2:38 pm #332278In reply to: BuddyPress 12.0.0
gbordormor22
ParticipantI can indeed help with BuddyPress 12.0 Documentation, if I am guided on how it works.
I can start now, and try to finish by January ending.
Then, it will be easy if the Documentation does not involve me writing PHP Codes.
Regards.
December 14, 2023 at 2:05 pm #332273In reply to: No One is Receiving Email Notifications
Varun Dubey
ParticipantYou can easily check if email functionality is working on your website by using a couple of test email plugins available online. https://wordpress.org/plugins/check-email/
If it’s working, email functionality should also be operational. BuddyPress uses the same approach to send emails.December 14, 2023 at 1:59 pm #332272In reply to: BuddyPress 12.0.0
Varun Dubey
Participant@erotmil Custom codes need to be checked for deprecated functions. BP v12 supports the last 2 versions. https://bpdevel.wordpress.com/2022/11/20/the-way-buddypress-loads-deprecated-code-will-change-in-version-11-0-0/
December 14, 2023 at 1:27 pm #332269In reply to: BuddyPress 12.0.0
erotmil
ParticipantMathieu, thanks for the comments , I can see there are many effected by the upgrade, I hope its not overwhelming for you. I don’t write php, but of course can copy and paste. I am not missing any buttons, the buttons just don’t work , they still show, they are edit , delete, created I think with forminator. Since there is a functions.php page in my child theme I tried pasting the add_filter code you posted, with BP 12 it didn’t help. I pasted it in the top section “function my theme area, I posted the functions php code in a gist here
I am looking to see how to share a screenshot of the offending page ,.
Hey also I noticed in the buddypress settings page there is a tab marked “Pages” that is new, I have no idea if I am supposed to set those drop downs to pages, but after touching it now I see a message in red “The following active BuddyPress Components do not have associated BuddyPress Pages: Members, Activity, Groups, Activate, Register.” The guy that wrote these custom code child theme pages died about two years ago, I’ve been maintaining this website and really hope I can keep this working , updates can whack it out , but usually it still functions after the update , not this time -
AuthorSearch Results