Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 926 through 950 (of 69,016 total)
  • Author
    Search Results
  • #332452

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Bonjour 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 the wp_{site_id}_posts table the directory slug, you need to look at the post_name field.

    About slug conflict management what I’ve added into 12.0.0 is to make sure a buddypress post type’s post_name doesn’t conflicts with one the existing page post 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 -3 suffix it should mean you have 3 other entries like activity, activity-1 and activity-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 the wp_{site_id}_option the value of the bp-pages option 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 others post_name values).

    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?

    #332449

    In reply to: Viewing other profiles

    alexhales123
    Participant

    To 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.

    #332447

    In reply to: BuddyPress 12.0.0

    perchenet
    Participant

    Hello 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.fr

    However, 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!
    David

    #332445

    In reply to: Group Creation glitch

    finkle5527
    Participant

    Based 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.

    #332443

    In reply to: BuddyPress 12.0.0

    priyam1234
    Participant

    Hello, 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.

    #332441
    Mathieu Viet
    Moderator

    Maybe 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' );

    #332439
    Mathieu Viet
    Moderator

    Hi,

    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)

    #332438
    Mathieu Viet
    Moderator

    Hi @alyssashift

    I’m sorry but we cannot provide help for this fork of BuddyPress, please contact the buddyboss support instead.

    #332435

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    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 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_DISPLAY to false into your wp-config.php to do so, see: https://wordpress.org/documentation/article/debugging-in-wordpress/#wp_debug_display

    Then, 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/buddypress folder 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 the wp_options table the _bp_db_version option value needs to be 13408.

    Here’s the download link for 11.4.0:
    https://downloads.wordpress.org/plugin/buddypress.11.4.0.zip

    #332433
    Ceraus
    Participant

    I 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!

    #332426

    In reply to: BuddyPress 12.0.0

    priyam1234
    Participant

    You 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>>

    #332423
    Ketil Ervik
    Participant

    None 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.

    #332422

    In reply to: BuddyPress 12.0.0

    cristan17
    Participant

    Hello, 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.

    #332417

    Hi 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.

    #332416
    Mathieu Viet
    Moderator

    Now 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.

    #332415
    Mathieu Viet
    Moderator

    Let’s discuss about your issue in this topic https://buddypress.org/support/topic/how-to-delete-register-page/ @bermudastream 🙏

    #332414
    Mathieu Viet
    Moderator

    Hi @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 ?

    anisf18
    Participant

    Hello 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

    Ceraus
    Participant

    Hello,

    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?

    #332407
    Ceraus
    Participant

    Unsure 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?

    #332406

    In reply to: BuddyPress 12.0.0

    erotmil
    Participant

    buddypress 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

    #332405

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Hi @claudiovillagra

    Is « BuddyPress Birthdays » a GamiPress add-on ? Or what is the plugin generating this feature ?

    #332404

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    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 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_id property ($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 buddypress post 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.

    #332402

    In reply to: BuddyPress 12.0.0

    claudiovillagra
    Participant

    Woffice just made an update, it fix it.

    However, we lost the customization of BuddyPress Birthdays…


    @imath
    Thoughts?

    #332395
    ingenxcomputers
    Participant

    so 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?

Viewing 25 results - 926 through 950 (of 69,016 total)
Skip to toolbar