Disable TinyMCE Drag and Drop

you can solve this problem by enqueue the following script with the dependency of jQuery

 jQuery(document).ready(function(){
      tinyMCEPreInit.dragDropUpload = false;
 });

To add the dependency you can refer this link

I have tested this solution and it has worked for me. I hope it will work for you too.

Leave a Comment