Description #
This action runs during the confirmation process of double opt-in. Using this action fluent form confirms the subscription of double optin. You can also use this to run your script during the confirmation process.
/*
* Source Action
*/
do_action('fluentform/entry_confirmation', $_REQUEST);
Usage #
add_action('fluentform/entry_confirmation', function ($request)
{
// Do your stuffs here
}, 10, 1);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $request (array) Global PHP Request ($_REQUEST)
Source Code #
This action is located in fluentformpor/src/classes/SharePage/SharePage.php