Update field in another form using entry id
add_action(‘frm_after_create_entry’, ‘frm_update_entry_in_other_form’, 30, 2); function frm_update_entry_in_other_form($entry_id, $form_id){ if ( $form_id !== 997 ) { //Change 997 to the ID of your update form return; } $entry_id = $_POST[‘item_meta’][9353]; //change 9353 to the ID of the field in your update form…Continue reading