Prepend field value to filename
add_filter(‘frm_pdfs_export_file_name’, ‘prepend_field_value’ , 10, 2); function prepend_field_value( $file_name, $args ) { $entry_id=$args[‘entry’]->id; $fieldvalue=FrmProEntriesController::get_field_value_shortcode(array(‘field_id’ => 2, ‘entry’ => $entry_id)); //change 2 to the ID of the field where the unique value is stored in your form $file_name = $fieldvalue. ‘-‘ .…Continue reading