WPChill / download-monitor

A WordPress plugin which provides an intuitive UI for uploading and managing downloadable files (including support for multiple versions), inserting download links into posts & logging downloads.
http://wordpress.org/extend/plugins/download-monitor/
262 stars 117 forks source link

a hook to prevent "Insert Download" appearing in wysiwyg editor #1356

Closed mplusb closed 1 year ago

mplusb commented 1 year ago

Hello. I would like to request that a hook be added into your plugin to prevent the "Insert Download" button from appearing with the wysiwyg editor. I've solved this with a little CSS for now but the ability to prevent the button from being added would be great please! Thank you :)

https://support.wpchill.com/conversation/6152?folder_id=93

TeoAlex commented 1 year ago

Copy and Paste the following code in the ( child ) theme's functions.php file to hide the "Insert Download" button in classic editor. // Hides DLM's "Insert Download" button in Classic Editor ( wysiwyg editor ). add_filter( 'dlm_hide_insert_download_classic_editor', '__return_true' );