Okay I think you can make use of the $display_status setting in the main desktop_data.php file.
First you will need to determine the IDs of the order statuses you *do* want to display. You could do this by opening phpMyAdmin and looking up the orders_status table. Then enter them like in the example above.//Array of order statuses to be displayed
//Enter the order status IDs separated by a ;
//E.g. '1;2;3;4';
//Use * to show all
$display_status = '*';



