Removing buttons From SugarCRM / SuiteCRM Detail View
Following Code will Remove the Fourth button from the Detailview of ModuleThis code should be placed in the display() function in the view.detail.php of the module in which we want to remove the button unset($this->dv->defs[‘templateMeta’][‘form’][‘buttons’][3]); $this->dv->process(); echo $this->dv->display(); Hope you find this blog post helpful. Feel free to add comments…