• Resolved curiositykillsthecat

    (@curiositykillsthecat)


    Goal: Multiple *Primary* users can sign up on the website. Each *Primary* user can use form to create *Secondary* users that are tied to the *Primary* user.

    Current challenge is that if I create another form for *Primary* to use, WP recognise them to be logged in, so the form can’t be used.

    Is this possible? Or do I need to create a form that is outside of this plugin/WP structure?

Viewing 2 replies - 1 through 2 (of 2 total)
  • @curiositykillsthecat

    Current challenge is that if I create another form for *Primary* to use, WP recognise them to be logged in, so the form can’t be used.

    You need to enable the Registration form for logged-in users
    with the following code snippet:

    add_filter( 'um_registration_for_loggedin_users', '__return_true' );

    You can add the code snippet to your theme/child-theme’s functions.php file
    or use the “Code Snippets” plugin.

    Thread Starter curiositykillsthecat

    (@curiositykillsthecat)

    @missveronicatv
    Thanks, this solved the problem

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can this be done? Allow signed-in user to sign-up for others’ is closed to new replies.