Delete user
add_action(‘frm_before_destroy_entry’, ‘delete_user_with_entry’); function delete_user_with_entry( $entry_id ) { $form_id = 10;// Replace 10 with the ID of your form $field_id = 25;//Replace 25 with the ID of your userID field $entry = FrmEntry::getOne( $entry_id, true ); if ( $entry->form_id == $form_id…Continue reading