The ability to hide the folder with attachments

my suggestion is the ability to hide the attachment folder because it is annoying against the background of text documents and is easy to accidentally delete. Hardly possible while haven’t wysiwyg, but decided to write

3 Likes

You can hide it with a simple CSS snippet:

div[data-path='attachments'], 
div[data-path='attachments'] + div.nav-folder-children 
{
    display: none;
}

(replace ‘attachments’ by the actual name of your folder)

8 Likes

Thanks. It worked great

I added this snippet but it doesn’t seem to be working for me. My attachment folders are named attachments.

Try to check out the data path with CTRL+SHIFT+I. For a strange reason, my data path was “Untitled”.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.