Search Results for 'buddypress'
-
AuthorSearch Results
-
December 22, 2023 at 1:19 pm #332452
In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorBonjour David (@perchenet),
Merci pour ton merci ☺️.
I’ll do the rest in English in case someone faces the same issue 😉.
Depending on whether you activated the BP Classic backwards compatibility Add-on, BP Directories can be a regular WP page (BP Classic & BP < 12.0.0) or use a specific post type
BuddyPress(BP 12.0.0 & up without BP Classic). So to find into thewp_{site_id}_poststable the directory slug, you need to look at thepost_namefield.About slug conflict management what I’ve added into 12.0.0 is to make sure a
buddypresspost type’spost_namedoesn’t conflicts with one the existingpagepost type’s one because it’s immediately after the domain (I’d rather use a intermediate slug but that’s not the way BP was built in the first place…). If you get a-3suffix it should mean you have 3 other entries likeactivity,activity-1andactivity-2. If you’re not using BP Classic or if you activated it after upgrading to 12.0.0 it can be caused by a migrating task wrongly played more than once.What I would do in your case: go into the BP Repair tools and if available use the « Reset slugs » one. If you don’t see this repair tool it means you’re using BP Classic.
If the reset tool didn’t change anything or if BP Classic is active, I would check into thewp_{site_id}_optionthe value of thebp-pagesoption name, it’s a serialized array keyed by component name and containing the post IDs that are associated with a BP Directory. Thanks to this post IDs, I would only keep the corresponding post type and delete the other ones (or change the otherspost_namevalues).I’d be interested to reproduce the steps you did to face this situation. Was BP Classic activated on the same site that BuddyPress is activated on before the 12.0.0 upgrade? Was it activated after? Or maybe you haven’t activated it?
December 22, 2023 at 12:28 pm #332449In reply to: Viewing other profiles
alexhales123
ParticipantTo enable users to view other profiles on BuddyPress:
1. **Install and Activate BuddyPress:**
Make sure you have installed and activated the BuddyPress plugin on your WordPress site.2. **Check Privacy Settings:**
Ensure that users’ profile privacy settings allow their profiles to be viewed by others. Users can control this setting in their profile settings.3. **Activate Extended Profiles:**
Enable the “Extended Profiles” component in the BuddyPress settings to allow additional fields and information on user profiles.4. **Verify Theme Compatibility:**
Confirm that your WordPress theme is compatible with BuddyPress to ensure proper display of profile information.5. **Check User Roles:**
Verify that users attempting to view profiles have the necessary capabilities. By default, registered users should be able to view other registered users’ profiles.6. **Use BuddyPress Widgets/Shortcodes:**
Utilize BuddyPress widgets and shortcodes to display member directories and user lists. Refer to the BuddyPress documentation for guidance on implementing these features.7. **Review BuddyPress Documentation:**
Consult the official BuddyPress documentation for any specific settings or features related to profile viewing.By following these steps, you should enable users to view other profiles seamlessly on your BuddyPress-enabled WordPress site.
December 22, 2023 at 11:51 am #332447In reply to: BuddyPress 12.0.0
perchenet
ParticipantHello everyone, bonjour Mathieu
Bravo pour le travail !
Since the update in 12, I have a slug problem.
My BP is installed as a sub-site, according to the procedure described here https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/#b-network-wide-activation-buddypress-root-blog-in-secondary-site
Main site: auposte.fr
BP site: comico.auposte.frHowever, I can’t impose my slugs. WP refuses to overwrite the slugs and use the basic slugs. It always adds -3 (activity-3, members-3).
Example: https://www.auposte.fr/wp-admin/network/admin.php?page=bp-rewrites won’t register simple slugs (without the -3). I tried in English (groups, members): same defeat.
What I don’t understand is how BuddyPress generates different slugs (members, members, members-3) for the same thing?
Where are the slugs managed in the database since BP version 12? Can I modify them in the database directly?
Thanks/Merci mille fois Mathieu et l’équipe!
DavidDecember 22, 2023 at 9:11 am #332445In reply to: Group Creation glitch
finkle5527
ParticipantBased on my web search, it seems that you need to disable the Paid Memberships Pro plugin or configure it to allow free group creation. Alternatively, you can also use the BuddyPress Groups add-on for TutorLMS, which lets you create and manage groups without any payment issues.
December 22, 2023 at 8:23 am #332443In reply to: BuddyPress 12.0.0
priyam1234
ParticipantHello, I’m facing another issue. I am unable to set the location of “Better Messages” to “Show in BuddyPress profile.” I encountered a severe error. I’ve also tested it on the default theme, where I only activated BuddyPress and the Better Messages plugin. I’ve successfully set the Better Messages location to work with other pages. Please assist as soon as possible; it’s urgent.
December 21, 2023 at 10:53 pm #332441In reply to: v12 removed bbcode buttons on reply box
Mathieu Viet
ModeratorMaybe it’s due to this bug we’ll be fixing in 12.1.0
Can you test adding the following code to see if it’s fixing the issue into the functions.php file of your active theme for example:
add_filter( 'bp_enqueue_assets_in_bp_pages_only', '__return_false' );December 21, 2023 at 8:10 pm #332439In reply to: Unable to view other profiles
Mathieu Viet
ModeratorHi,
I advise you to download and activate the BP Classic backwards compatibility Add-on for 3rd party plugins not ready yet for version 12.0.0 of BuddyPress (bbPress is not currently ready for it, see: https://bbpress.trac.wordpress.org/ticket/3576)
December 21, 2023 at 8:06 pm #332438In reply to: Multiple members pages per profile type
Mathieu Viet
ModeratorHi @alyssashift
I’m sorry but we cannot provide help for this fork of BuddyPress, please contact the buddyboss support instead.
December 21, 2023 at 7:31 pm #332435In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @awol
Thanks for your initiative, a possible way to find it is to download your
/wp-contentdirectory 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 would do if I were you would be to make sure errors are not logged on front-end but only into your error log file: you can define
WP_DEBUG_DISPLAYtofalseinto yourwp-config.phpto do so, see: https://wordpress.org/documentation/article/debugging-in-wordpress/#wp_debug_displayThen, there’s a good chance these errors are deprecated notices which means the 3rd party BuddyPress plugins or theme have not updated their code to be ready for 12.0.0. We anticipated this case building the BP Classic backwards compatibility Add-on. If you haven’t activated this Add-on with BuddyPress 12.0.0, you can try to do so to see if it fixes your issues.
If you want to roll back once you updated BuddyPress, you’ll need the BP Classic Add-on to first find back your BuddyPress pages. Then deactivate BuddyPress and all other BuddyPress plugins except BP Classic. BP Classic will make sure you have your BuddyPress pages will stay in place. Then only deactivate BP Classic. Remove the
wp-content/plugins/buddypressfolder of your site. Before installing version 11.4.0, make sure to edit manually the BuddyPress db version option for the one of version 11.4.0. Into thewp_optionstable the_bp_db_versionoption value needs to be13408.Here’s the download link for 11.4.0:
https://downloads.wordpress.org/plugin/buddypress.11.4.0.zipDecember 21, 2023 at 5:56 pm #332433Topic: WordPress’ “Forgot password?” broken
in forum How-to & TroubleshootingCeraus
ParticipantI seem to be having an issue where I want to use the wordpress login/register/forgot password, but the forgot password brings back an empty page. Turning off Buddypress makes it work fine, but not sure which setting to toggle to get it to work.
Any help would be appreciated!
December 21, 2023 at 9:49 am #332426In reply to: BuddyPress 12.0.0
priyam1234
ParticipantYou and your teamar are great. I have one last question . i have my all ACF fields in set_general_options() function. could you please provied me hook with the help of i can put that field in your <<BuddyPress directories>>
December 21, 2023 at 9:20 am #332423In reply to: Profile picture disappear!
Ketil Ervik
ParticipantNone of this is true or has helped me! I uninstalled buddypress for the hundred and fourteenth time in the last five years, only problems. I am now using Ultimate member and everything works as it should.
December 21, 2023 at 9:18 am #332422In reply to: BuddyPress 12.0.0
cristan17
ParticipantHello, thank you for your assistance. I have upgraded to BuddyPress v12, but now I am facing an issue. I am unable to customize my site from WordPress, specifically under APPEARANCE/CUSTOMIZE. Every time I try to customize the site, I receive an error message. Even the widget page is not loading properly for customization and some widgets stopped working (eg: who’s online widget)
This issue prompted me to use WP Rollback to revert to the previous version, but going back broke my site. Is there a fix for this? I would really appreciate your help.
December 21, 2023 at 6:14 am #332417In reply to: how to edit register page for buddypress?
Printed Carrier Bags
ParticipantHi Richard,
To edit the signup/register page for new BuddyPress members, check if it’s listed under pages or the BuddyPress plugin menu. If not, you might need to explore the plugin settings or customization options.
December 21, 2023 at 6:05 am #332416In reply to: How To Delete Register Page
Mathieu Viet
ModeratorNow I’ve read the other topic you posted into, I know you are using WordPress Multisite.
My question about viewing the registration page being disconnected might seem a bit obvious but I wanted to check if you were using or not the Site invitation feature of BuddyPress which uses our signup page although global registration are disabled.
But I guess registration is on since you’re using a specific plugin.
Using BuddyPress < 12.0.0, once you removed the registration page, were you getting a notice to do the page association ?
I believe reading your post we should probably stop assuming you want BuddyPress to manage registration to your site, so I’ll work on a way to only do so if the admin opts in.
December 21, 2023 at 5:37 am #332415In reply to: how to edit register page for buddypress?
Mathieu Viet
ModeratorLet’s discuss about your issue in this topic https://buddypress.org/support/topic/how-to-delete-register-page/ @bermudastream 🙏
December 21, 2023 at 5:32 am #332414In reply to: How To Delete Register Page
Mathieu Viet
ModeratorHi @bermudastream can you give more details about your config:
– WordPress Multisite or regular ?
– In the site health information tab, what are the values of:
– WordPress > registration
– BuddyPress > URL parser– being disconnected, what do you see when you go to this registration page ?
December 21, 2023 at 3:30 am #332412anisf18
ParticipantHello everyone,
Since the update to version 12.0, there have been numerous changes. One of them is the desynchronization between the “favorite” and “subscribe” features in BuddyPress and BBPress. Is there a solution to address this issue?
Thankyou
December 20, 2023 at 8:52 pm #332408Ceraus
ParticipantHello,
I am trying to change back the sign up process to use WordPress’ and not the BuddyPress registration page. I attempted to use the following to no avail.
Any help would be appreciated!
Resolved – How to disable the registration function of buddypress?
December 20, 2023 at 8:49 pm #332407In reply to: How To Delete Register Page
Ceraus
ParticipantUnsure if this is what you mean, I am trying to get back the WordPress Registration form, maybe you will fare better with it?
Resolved – How to disable the registration function of buddypress?
December 20, 2023 at 8:32 pm #332406In reply to: BuddyPress 12.0.0
erotmil
Participantbuddypress birthdays looks like a wbcom designs widget, I’m gonna try and install it on a site with buddypress 12 to see if it works, will report back
December 20, 2023 at 8:11 pm #332405In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorIs « BuddyPress Birthdays » a GamiPress add-on ? Or what is the plugin generating this feature ?
December 20, 2023 at 8:07 pm #332404In reply to: BuddyPress 12.0.0
Mathieu Viet
ModeratorHi @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 to get this ID though adding an action to this hook https://github.com/buddypress/buddypress/blob/master/src/bp-core/classes/class-bp-component.php#L1260 (the query parameter has a
queried_object_idproperty ($query->queried_object_id) where you’ll get this ID.The code I shared with you is adding a new WP Admin Menu « BuddyPress directories ». Thanks to it you’ll get the list of directory pages similarly to regular WordPress pages and you’ll be able to reach the edit part of these pages. As the
buddypresspost type doesn’t support the editor, this page will only show the directory title. I believe from what I know of ACF it should be enough for this plugin to generate its metabox.December 20, 2023 at 4:05 pm #332402In reply to: BuddyPress 12.0.0
claudiovillagra
ParticipantWoffice just made an update, it fix it.
However, we lost the customization of BuddyPress Birthdays…
@imath Thoughts?December 19, 2023 at 10:40 pm #332395In reply to: how to edit register page for buddypress?
ingenxcomputers
Participantso that plugin will let new users sign up for buddypress?
Once you’ve downloaded it, do you install all folders into the WP plugins section?
-
AuthorSearch Results