• Resolved vladimirbajraktarov

    (@vladimirbajraktarov)


    This plugin should do exactly what I need for my BuddyBoss platform and Buddy Member Types plugin.
    But, after installing it, I do not see the Menu to edit (and use) new user registration options (I have a screenshot for proof)? What do I do wrong?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Michael Beckwith

    (@tw2113)

    The BenchPresser

    Not sure what may be going on with that other than perhaps your user doesn’t have the correct capabilities? For example, if your install is a multisite, your user needs to have the create_users capability and if it’s not multisite, then it needs the delete_users capability.

    Only thing I can see that would be potentially preventing the menu from showing for you.

    On that note, one thing to keep in mind is that we do not have any official BuddyBoss support. If it’s working in general awesome, but it’s not something we do any active testing against. We stick with BuddyPress itself and where we can, bbPress.

    Thread Starter vladimirbajraktarov

    (@vladimirbajraktarov)

    Thank you for your prompt reply!!!

    Since you are trying to help & support me, I wish to return the favor:
    – we use BuddyBoss Platform on BuddyBoss Theme; BuddyBoss Platform is based on BuddyPress.
    – we have installed BuddyBoss Member Types plugin (for the platform) enabling the option to connect User Profile (social) with User Role (WooCommerce).
    – but, since it is a Private Network (restricting not Admin manual approved access) we tried to use your plugin option; AND IT WORKED (partially).
    – first, to enable to see BP Registration, we had to enable BuddyBoss Platform component “Forum discussions”; and it “showed up”.
    – BUT (here it comes), the great functionalities and Email notifications that your plugin provides – DOES NOT WORK.
    COULD YOU HELP & ADVICE HERE? (if we make this work, this would become very important paid plugin for BuddyBoss Platform users)

    Michael Beckwith

    (@tw2113)

    The BenchPresser

    All of the loading logic is found in the loader.php file inside our plugin.

    There we check if either BuddyPress or bbPress is present, and if either are, we load the rest. If neither, then we wouldn’t.

    In terms of administrative tasks, we don’t rely on anything coming from BuddyPress/bbPress directly. All of our wiring up is using WordPress core hooks.

    The frontend facing parts will rely on BuddyPress/bbPress but that’s primarily to redirect to user profiles when in private network mode, and hiding UI with in “just needs approved first” mode. The only exception I can see browsing through the code, is when notifying a new pending user that they’re in moderated status. We hook into that with the following code and the bp_core_activated_user hook:

    add_action( 'bp_core_activated_user', 'bp_registration_options_notify_pending_user', 10, 3 );
    

    If there’s an equivalent hook for pending but newly activated users in BuddyBoss, you could use the same callback for that one as well.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Where is it’ is closed to new replies.