Hello,
Is it possible to remove the “Likes” Section in List View of Doctypes?
I dont want these heart icons to be shown:
Hello,
Is it possible to remove the “Likes” Section in List View of Doctypes?
I dont want these heart icons to be shown:
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!