I have looked into this a little bit and was able to use JavaScript to hide the entry properties with the following:
$(document).ready(function () { // try until row in table is found or 10 seconds have passed. var i = 1; function removeEntryPropertyLoop() { setTimeout(function () { // remove whole row containing the cell with the desired key. if ($('.mTitle[lflocalize=STR_MODIFIED]').length > 0) { $('.mTitle[lflocalize=STR_MODIFIED]').parent().parent().remove(); $('.mTitle[lflocalize=STR_CREATED]').parent().parent().remove(); $('.mTitle[lflocalize=STR_PATH]').parent().parent().remove(); g return; // exit loop } i++; if (i < 20) { removeEntryPropertyLoop(); } }, 500); } removeEntryPropertyLoop(); });
But I'm having a hard time figuring out how to hide the template and fields. We want to display any linked documents, which is why we are not hiding the entire metadata pane.
Any help is appreciated, thank you!