How to hide ‘status’ from list view
before:
frappe.listview_settings['Purchase Invoice'] = {
onload(listview) {
listview.columns = listview.columns.filter(column => {
if (column.df && column.df.fieldname === 'posting_date') {
return false;
}
return true;
});
$(document).ready(function() {
$('div.list-row-col.hidden-xs').filter(function() {
return $(this).text().trim() === 'Date';
}).hide();
});
}
};
after the code
i did something like this to hide date,
you can try this