How to hide or remove Name Filter from standard list?

Hi,

How to hide or remove Name Filter from standard list?
Is there any way to remove or hide the Name Filter?

Thanks

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

Thanks for the advice