How to change the Leads module history table labels

I am user new Suite CRM and I need help for in this topic

I want to change Status to Status XYZ, for example:

status

This looks quite simple. Please follow the following steps and see if that helps

  1. Click on ‘Admin’ menu present just below the ‘Profile’ Menu at right top.
  2. Go to ‘Development Tools’ to select ‘Studio’
  3. Select ‘Meetings Module’ to click on ‘Labels’
  4. Select ‘All Labels’ from the drop down list.
  5. Change the ‘LBL_LIST_STATUS’ value.
  6. Once done, Save & Deploy to test the new label of the status column.

image

For more, refer

1 Like

much simple thanks for this, do you help in a other topic, how to alter columns sequence in this table ?

Status XYZ Subject

instead

Subject Status XYZ

Mark solution :white_check_mark: on the post which solved your issue. It will help others in the future.

I’m not sure if this is the most efficient way to change the order of history columns in the Meetings module for other modules like Leads. However, the following steps might be helpful:

  1. Copy the file 'modules/Meetings/metadata/subpanels/ForHistory.php' and paste it into 'custom/modules/Meetings/metadata/subpanels/ForHistory.php'.
  2. Adjust the column order as needed.
  3. Perform a Quick Repair and Rebuild.

To swap columns ‘name’ and ‘status’

'status' => [
            'widget_class' => 'SubPanelActivitiesStatusField',
            'vname' => 'LBL_LIST_STATUS',
            'width' => '15%',
        ],
 'name' => [
            'vname' => 'LBL_LIST_SUBJECT',
            'widget_class' => 'SubPanelDetailViewLink',
            'width' => '30%',
        ],
1 Like

Thank for this, resolved.

1 Like