HI,
add_filter(“gform_column_input_content_1_39_2”, “change_column2_content”, 10, 6);
function change_column2_content($input, $input_info, $field, $text, $value, $form_id) {
$input_field_name = ‘input_’ . $field[“id”] . ‘[]’;
$tabindex = GFCommon::get_tabindex();
$new_input = ‘<input type=”file” name=”‘ . $input_field_name . ‘” ‘ . $tabindex . ‘ class=”upload” />’;
return $new_input;
}
i have past the code in function.php. the problem is image is not save. can you please help me ?