We'd like to make sure that users edit the explanatory text on a page when they attach a new file. Is it possible to remove the Add=>Attachment option from the main menu, while still retaining the editor's Insert=>Attachment function?
Javascript hack?
Browse to Confluence Admin > Look & Feel > Custom HTML
Add this to at the end of the HEAD:
<script> AJS.toInit(function(){ AJS.$('#add-attachment-link').hide(); }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.