Hide Add Comment

Hello Guys

I want to remove the section “Add Comment”


Please help me

Thanks

Hi @jinsy,

Please apply it.


frappe.ui.form.on('Your_DocType_Name', {
    refresh: function(frm) {
        frm.page.wrapper.find(".comment-box").css({'display':'none'});
    }
});

Thank You!

9 Likes

Thank you @NCP

It works.

1 Like

@NCP Hi, is there an option to disable comment in all pages? or use frappe.router.on("change", is this the Best Practice?

Hi @hyaray, Please check the reference: Any Idea to run JS script on any/specific doctype? - #2 by NCP

1 Like

It works, thanks a lot!! :clap: