Hi, How to add a footer In a Doctype,
Like “Powered By- Some thing.”
Thank you.
Hi @VINOTH,
Please check it.
frappe.ui.form.on('Your DocType', {
refresh: function(frm) {
$('<h5 style="text-align:right;">Powered By - Some thing.</h5>').insertAfter( ".comment-box" );
}
});
Thank You!