Description #
This action runs after deleting the partial entries.
/*
* Source Action
*/
do_action('fluentform/after_partial_entry_deleted', $entryId, $formId);
Usage #
add_action('fluentform/after_partial_entry_deleted', function ($entryId, $formId)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $entryId (int) Submission ID
- $formId (int) Form ID
Source Code #
This action is located in fluentformpro/src/classes/StepFormEntries.php -> deleteEntryById().