Hide some items from Screen options in dashboard for products

The best option would be to use CSS to hide these columns and fields.

Add this in your admin.css file to hide the SKU column

table.wp-list-table .column-sku {
    width: 10%
}

To hide options in Screen Options add the following CSS in admin.css

.metabox-prefs label:nth-child(2), .metabox-prefs label:nth-child(11), .metabox-prefs label:nth-child(12)  {
        display: none;
}

FYI to double check my nth-child CSS as it may not be exact. Play around with your admin.css file while inspecting the element in the wp-admin backend.

Leave a Comment