How to hide this button Links

Screenshot from 2023-10-05 17-58-36

@neha , Please add the custom script on the doctype Address.

frappe.ui.form.on('Address', {
    refresh(frm) {
    setTimeout(() => {
        $('.inner-group-button').prop('hidden', true);
        }, 300);
    }
})

Thanks

Hi @neha,

@Suresh_Thakor solution will also work and another solution for check the documentation of Hide Buttons in Form View.

Thank You!

Thank you