Hide Name in list View

How do I hide the name field in list view (last column below)

Hi, you can set the hide_name_column property to true to achieve that.

ref: List

2 Likes

Thank you. Managed to do it using custom script

can u share the script buddy ?

frappe.listview_settings[‘Opportunity’] = frappe.listview_settings[‘Opportunity’] || {};

frappe.listview_settings['Opportunity'] = {
    hide_name_column: true,
}
2 Likes