Basic example
add_action(‘frm_after_destroy_entry’, ‘my_custom_function’, 10, 2); function my_custom_function( $entry_id, $entry ) { $target_form_id = 29; // change 29 to your form ID. if ( $target_form_id !== (int) $entry->form_id ) { return; } // Handle deleted entry for target form. }Continue reading