I don't want my users to upload anything, is there a quick way to remove the attachment icon from the toolbar? I looked thru the css and couldn't find a way that worked. Thanks in advance!
A sprinkle of CSS in your application is the simplest way:
trix-toolbar .trix-button-group--file-tools {
display: none;
}
DOH, been spending too much time with TinyMCE and others looking for programmatic settings to manipulate toolbar options when this is sufficient enough. thanks for keeping it simple everyone, don't overthink it.
Most helpful comment
A sprinkle of CSS in your application is the simplest way: