Question:
How can I remove the delete button from the image manager? It doesn't make sense for my site, because users should not able to delete images. It currently doesn't do anything, which is fine, but I don't want to display it.
Answer:
Hiding the image manager delete button can easily be achieved via CSS. Here is a quick snippet for removing it from the editor's interface.
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img { display: none !important; } div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img { -webkit-transform: translateY(-50%) translateX(-50%) !important; -moz-transform: translateY(-50%) translateX(-50%) !important; -ms-transform: translateY(-50%) translateX(-50%) !important; -o-transform: translateY(-50%) translateX(-50%) !important; }