cancel
Showing results for 
Search instead for 
Did you mean: 

Disable print button in browser

duanzq
Champ on-the-rise
Champ on-the-rise
Normally we can disable "print" by set CSS mediaSmiley Tonguerint properties, but I cannot find which CSS should be modified.
Anybody can help me to do this?
1 REPLY 1

duanzq
Champ on-the-rise
Champ on-the-rise
I got this work done.
I modified the file "tomcat/webapps/share/WEB-INF/classes/alfresco/templates/org/alfresco/document-detail.ftl"
Add the following line
———-
<@templateHeader>
   <@script type="text/javascript" src="${url.context}/res/modules/documentlibrary/doclib-actions.js" group="document-details"/>
   <@link rel="stylesheet" type="text/css" href="${url.context}/res/components/document-details/document-details-panel.css" group="document-details"/>
   <@templateHtmlEditorAssets />
   &lt;!– Disable Print –&gt;
    &lt;style type="text/css" media="print"&gt;
        BODY {display:none;visibility:hidden;}
  &lt;/style&gt;

</@>