The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Recently, some teams using Confluence have put forward more advanced requirements for information confidentiality.
These space administrators want to prohibit users from downloading, exporting, and printing attachments in designated spaces.
Last week, I checked a lot of related setting posts in the community. According to the community’s suggestions, I adjusted the space configuration for your reference.
Hide the download button on the preview page
Space Tools--Look and feel--Layout--Content Layouts---Page Layout
<
style
type
=
"text/css"
>
.cp-control-panel-download {
display:none !important;
}
.cp-waiting-message-download {
display:none !important;
}
a.download-all-link {
display: none !important;
}
a#download-all-link {
display: none !important;
}
</
style
>
Hide attachment button
Space Tools--Look and feel--Layout--Content Layouts---Main Layout
#if ($userAccessor.hasMembership('confluence-administrators', $helper.action.remoteUser.name))
#else
<
script
type
=
"text/javascript"
>
AJS.toInit(function(){
AJS.$('#view-attachments-link').hide();
AJS.$('#view-in-hierarchy-link').hide();
AJS.$('#content-metadata-attachments').hide();
});
</script
>
#end
#if ($userAccessor.hasMembership('confluence-administrators', $helper.action.remoteUser.name))
#else
<
script
type
=
"text/javascript"
>
AJS.toInit(function(){
AJS.$('#space-tools-menu-trigger').hide();
});
</script
>
#end
disable right mouse click
Space Tools--Look and feel--Layout--Content Layouts---Page Layout
<
script
type
=
"application/javascript"
>
content_dom = document.getElementsByClassName("confluence-embedded-file");
for (var i = 0; i <
content_dom.length
; i++) {
content_dom[i].oncontextmenu
=
function
() {
return false;
}
}
a_dom=
document
.querySelectorAll('a[
data-linked-resource-type
=
"attachment"
]')
for (var
i
=
0
; i < a_dom.length; i++) {
a_dom[i].oncontextmenu
=
function
() {
return false;
}
}
</script>
print out a blank page
Space Tools--Look and feel--Layout--Content Layouts---Page Layout
<style type="text/css" media="print">
body { visibility: hidden; display: none }
</style>
Tips
https://confluence.atlassian.com/confkb/how-to-disable-attachment-downloads-215484007.html
https://community.atlassian.com/t5/Confluence-questions/Hide-items-in-option-menu/qaq-p/920803
Ollie Guan
Community LeaderCtrip PMO
Trip.com Group
Shanghai, China
555 accepted answers
Feeling overwhelmed by the demands of work and life? With a 25% increase in the prevalence of anxiety and depression worldwide during the pandemic, for most of us, it’s a resounding yes . 🙋♀️ ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
2 comments