• Resolved Design Extreme

    (@designextreme)


    This plugin now destroys the Post listing in the Dashboard for mid-sized screens. Please using the following in functions.php if you want to hide this column.

    add_action('admin_head', 'custom_dashboard_css');
    
    function custom_dashboard_css() {
      echo '<style>
    .fixed .column-search_exclude {
    	display: none;
    }
    </style>';
    }
  • The topic ‘Destroys the Post Listing’ is closed to new replies.