Hello I add `add_filter( ‘gform_file_upload_markup’, ‘change_upload_markup’, 10, 4 );
function change_upload_markup( $file_upload_markup, $file_info, $form_id, $field_id ) {
return ‘’ . esc_html( $file_info[‘uploaded_filename’] ) . “ ”;
}` to the functions.php - but the filter is not working. The default markup is displayed, any ideas on this ? Best P.