Hide Audit Trail

Hi @k452,

Please apply custom/client scipt for it.

frappe.ui.form.on("DocType", {
  refresh: function (frm) {
      $('.timeline-items').hide();
  }
});

Set your doctype in script.
Then reload (Ctrl + Shift + R) and check it.

Thank You!

1 Like