Save the entry ID in a field
add_action(‘frm_after_create_entry’, ‘frm_add_entry_id’, 42, 2); function frm_add_entry_id($entry_id, $form_id){ if ( $form_id == 221 ) { //change 221 to the ID of your form FrmEntryMeta::add_entry_meta( $entry_id, 1819, “”, $entry_id);//change 1819 to the ID of the field in which you want to store…Continue reading