Summernote: How Can I Remove File Upload Option From Image Insert Window?

I don’t want anything in my GUI which confuses my users by offering options that don’t work.

When they insert an image into a summernote textarea, I only want them to be able to paste an image URL, and not to have the option to upload a file. Is there any way I can remove this “Select from files” option?

choose

Bump! @teodor, is this possible to do?

I checked with summernote and it is not yet possible to disable it, here is the feature request from 2014 for it: https://github.com/summernote/summernote/issues/548

A possible solution for you: https://stackoverflow.com/questions/33615669/disable-image-upload-in-summernote

Brilliant, thanks for the update @patrick… the CSS to display:none it looks the easiest way to go!

.note-group-select-from-files { display: none; }