How to hide or remove Name Filter from standard list?

I achieve that through the custom script for the list view.

frappe.listview_settings['Item'] = {
    onload: function(me) {
      me.$page.find(`div[data-fieldname='name']`).addClass('hide');
      }
    
  };
5 Likes