Description #
This action runs before starting the user registration process on the user registration module. You can use this action to do additional tasks during the user registration process.
/*
* Source Action
*/
do_action('fluentform/user_registration_before_start', $feed, $entry, $form);
Usage #
add_action('fluentform/user_registration_before_start', function ($feed, $entry, $form)
{
// Do your stuffs here
}, 10, 3);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $feed (array) Feed Data
- $entry (Object) Submission Object
- $form (object) Form Object
Source Code #
This hook is located influentformpro/src/Integrations/UserRegistration/UserRegistrationApi.php -> registerUser()