• Resolved adriana97

    (@adriana97)


    Hi, are there any hooks that I can use to add some code before form sumbission, I want to add autogenerated password and generate autologin link before form submission. Please help

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @adriana97,

    We have the following hooks for before and after registration. You can use these hooks to customization the plugin according to your requirements.

    1) Before Registration

    do_action( 'user_registration_before_register_user_action', $form_data, $form_id );

    2) After Registration

    do_action( 'user_registration_after_register_user_action', $form_data, $form_id, $user_id );

    Note: In $form_data you can get all user’s input that the user has entered in the form.

    Regards!

    Thread Starter adriana97

    (@adriana97)

    Thank You!

    Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @adriana97,
    We are marking this thread as resolved, as we believe the things mentioned here are now resolved. Please create a new support thread if needed.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Befor form submission hooks’ is closed to new replies.