Created
December 4, 2021 15:45
-
-
Save aimahdi/fe22fe5d78dc8b7d4aec656f3509c984 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('fluentform_before_submission_confirmation', 'your_custom_confirmation_function', 20, 3); | |
function your_custom_confirmation_function($entryId, $formData, $form) | |
{ | |
if ($form->id != 207) { | |
return; | |
} | |
sleep(20); | |
// DO your stuff here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment