Create entry in form with repeating section
add_action(‘frm_after_create_entry’, ‘create_repeating_section_entry’, 30, 2); function create_repeating_section_entry($entry_id, $form_id){ if ( $form_id == 5 ) { //replace 5 with the id of Form A // Format the values for the repeating section $repeating_values = array(); foreach( $_POST[‘item_meta’][6804] as $k => $r )…Continue reading