This code will remove the Gallery Settings div from the Image Upload Thickbox in WordPress.
Purpose: to not confuse clients with these gallery settings, if you don’t want them inserting galleries for some reason.
/****************************/
/******* Remove gallery settings div from feature image upload thickbox **********/
/****************************/
add_action( 'admin_head_media_upload_gallery_form', 'isa_remove_gallery_setting_div' );
if( !function_exists( 'isa_remove_gallery_setting_div' ) ) {
function isa_remove_gallery_setting_div() {
print '
<style type="text/css">
#gallery-settings *{
display:none;
}
</style>';
}
}
Questions and Comments are Welcome