Hide overview section at the top of some forms

Hello all,

One customization question. Is it possible to hide the “overview” section that appears at the top of some forms? See image below:

I can’t find nothing in “Customize form” and don’t know if it is possible using a client script.

I have already solved this issue. In case it is useful to anyone it can be done with a Client Script applied to the corresponding form.

frappe.ui.form.on('Project', {
	refresh(frm) {
		// your code here
		frm.dashboard.heatmap_area.hide();
	}
});
1 Like