Support

Account

Home Forums Backend Issues (wp-admin) Attachment Meta Box Disappears Reply To: Attachment Meta Box Disappears

  • This fix (taken from another thread and thanks to Hoblin) does a perfect quick and dirty fix for now:

    // fix for ACF PRO version 5.20
    	add_filter('admin_footer', function(){
    		echo '<script type="text/javascript">jQuery("#screen-options-wrap .metabox-prefs").prepend(\'<input type="checkbox" style=”display: none;">\');</script>';
    	});