Table of Contents
Description #
This action runs before starting the user registration process on the user registration module . You can use this action to do additional task during 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 (array) Enrty Data
- $form (object) Form Object
Source Code #
This hook is located in /fluentformpro/src/Integrations/UserRegistration/UserRegistrationApi.php