Table of Contents
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('fluentformpro_entry_confirmation', $_REQUEST);
Usage #
add_action('fluentformpro_entry_confirmation', function ($_REQUEST)
{
// Do your stuffs here
}, 10, 4);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $_REQUEST (array) Global PHP Request
Source Code #
This hook is located in /fluentformpro/src/classes/SharePage/SharePage.php