Hide the user that creates the doc

Hello everyone,

I need to make a survey within the company and every user will be creating a new doc with answers but I need it to be anonymous. For that I need to hide this

Basically I need to delete the line of who created it. Is it possible?

Thanks

Hi @capintervencion,

Please apply it.

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

Thank You!

Thanks! That worked