• Resolved menzah

    (@menzah)


    I created 2 registration forms, 1 for short for potential donners, 1 long one for business looking for financial aid due to the economical damages caused by the COVID19 pandemic.
    Donners registrations are submitted well. The business registration forms even if the confirmation GDPR approval check box is checked the form is not sent and an error message indicates that the GDPR approval check box is not checked.

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 22 total)
  • Thread Starter menzah

    (@menzah)

    I deleted the recaptcha V2 field and the form was not sent This time the error nessage was The “The username can not be empty.” and it isn’t empty

    Plugin Support Laura – WPMU DEV Support

    (@wpmudev-support8)

    Hi @menzah

    I hope you’re well today and thank you for your question!

    Such behavior suggests that there’s most likely some sort of a conflict but it’d be best if I could take a look at the form in question and try to send some test submissions too.

    I found one Forminator form on your site that is a contact form and two forms that appear to be registration forms but one comes from BuddyPress and the other one seems to be coming form some other plugin. Could you point me to the page where I could actually see and test the failing Forminator form then?

    Best regards,
    Adam

    Thread Starter menzah

    (@menzah)

    Sorry for that, I rechanged to Forminator forms. I tried to register with forms created by other plugins that worked fine, but does not include all features I need. Also I had to delete in one form “Business Regestration” the recaptcha field because it doesn’t show at the published form. Please recheck it the website is https:/www.help-first.com

    Thread Starter menzah

    (@menzah)

    I use the buddypress plugin. I have set 2 groups (like sellers & buyers.) I created 2 registration forms 1 for each group. How can I arrange that registered users are registered in the proper group, according to the registration form they filled? Thank you.

    Plugin Support Saurabh – WPMU DEV Support

    (@wpmudev-support7)

    Hello @menzah,

    I went ahead and checked the site but I see 403 forbidden. Have you restricted the site with respect to the location? If yes, could you please allow a few locations and let us know those to check the same further?

    Here is the screenshot to what I see as of now:
    https://monosnap.com/file/11Cekw9RR46RSP0Joe8sKKn3Eyeiby

    Thank you,
    Prathamesh Palve

    Plugin Support Dimitris – WPMU DEV Support

    (@wpmudev-support6)

    Hello @menzah

    I’m closing this thread due to recent inactivity.
    Feel free to post back any updates and we can reopen it and carry on troubleshooting.

    Take care,
    Dimitris

    Thread Starter menzah

    (@menzah)

    Dear Adam I have started using the BuddyPress plugin. I created 2 groups and 2 different registration forms 1 per each group. My problem is how to associate a new member to the BP group according to his or her registration form. The subscribers choose the registration form according to their participation wishes.
    Thank you

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @menzah

    It would require custom code,

    https://buddypress.org/support/topic/auto-assign-new-member-to-group-upon-registration/

    I can see there is this groups_join_group() that can be used to add the user to a group, I pinged the developers to check if there is any way to get the registered user for a specific form, so we could use this function.

    We will update once hearing back from the team.
    Best Regards
    Patrick Freitas

    Thread Starter menzah

    (@menzah)

    Tישמל טםוץ ‘קרק גם I ןמדקרא איק בםגק כםר ש בקראשןמ כםרצ?

    Thread Starter menzah

    (@menzah)

    Thank you. were do I insert the code for each form?

    Plugin Support Laura – WPMU DEV Support

    (@wpmudev-support8)

    Hi @menzah

    I hope you’re well today!

    Forminator provides the “forminator_cform_user_registered” action hook so that can be used to obtain an ID of a newly registered user like this

    add_action( 'formiantor_cform_user_registered', 'my_custom_function', 10, 1);
    
    function my_custom_function( $user_id ) {
    
    // do something with $user_id
    // e.g. add it to a group like this
    
    groups_join_group( 'Students', $user_id );
    
    }

    This can be used in your own plugin or MU plugin. It should also work if added to “functions.php” file of active theme.

    Note please: I didn’t have a chance to test this code if it comes to BuddyPress part; you’ll also have to adjust your group name in the code above.

    Kind regards,
    Adam

    Thread Starter menzah

    (@menzah)

    Thank you very much

    Thread Starter menzah

    (@menzah)

    Please instruct me were exactly this code should be add since I couldn’t find the hooks you mentioned
    Thank you

    Thread Starter menzah

    (@menzah)

    Please instruct me how can I reach the FORMINATOT hooks code
    Thank you (I couldn’t find it)

    Thread Starter menzah

    (@menzah)

    Sorry FORMINATOR

Viewing 15 replies - 1 through 15 (of 22 total)

The topic ‘Regestration form’ is closed to new replies.