thelord Keep in mind, if you hide the information in the MODAL, you are hiding it for all file types, which might look a bit strange when there is only an icon:


You can hide it with custom CSS:
.modal-info {
display: none;
}
Or if you only want to hide it only for PDF files:
.modal-preview-pdf + .modal-info {
display: none;
}