Import file from URL
add_filter(‘frm_pre_create_entry’, ‘frm_upload_from_url’); function frm_upload_from_url( $values ) { if ( $values[‘form_id’] == 5 ) { //change 5 to your form id $upload_field_id = 25; // replace 25 with the id of your upload field $url_field = 24; // replace 24 with…Continue reading