How to hide the status in the List view of sales order

image

Add this client script code

frappe.listview_settings["Sales Order"] = {
	refresh(listview){
		$(".indicator-pill").parent().hide();
		$('span:contains("Status")').closest('.list-row-col').hide();
	}
};
2 Likes