Announcement

Collapse
No announcement yet.

Remove the History tab from "account" page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Remove the History tab from "account" page

    HI all.
    I ask help to make a change for the "Account" page which is installed by default.
    I would like to remove or limit the display to the "History" tab on the right side of the page.
    Where do I find the file to be edited to remove this tab?
    thank you so much

    Last edited by scratch; 10-10-2016, 10:20 AM.

  • #2
    Will be possible in the 4.3.0 version.

    Comment


    • #3
      Hi.
      Create file custom/Espo/Custom/Resources/metadata/clientDefs/Account.json with content
      Code:
      {
         "sidePanels": {
            "detail": [
               {
                  "name":"activities",
                  "label":"Activities",
                  "view":"crm:views/record/panels/activities",
                  "aclScope": "Activities"
               },
               {
                  "name":"tasks",
                  "label":"Tasks",
                  "view":"crm:views/record/panels/tasks",
                  "aclScope": "Task"
               }
            ]
         }
      }

      Comment

      Working...
      X