How to remove "Likes" from List View?

Hello,

Is it possible to remove the “Likes” Section in List View of Doctypes?

I dont want these heart icons to be shown:
Likes

Hi @k452,

Please apply the Listview client script for it.

frappe.listview_settings['Your DocType'] = {
	refresh: function(listview) {
	   	$("use.like-icon").hide();
	}
};

Output:

Please set your doctype name according.

Thank You!

1 Like