Hi,
I’ve modified the “Employee” labels to “Associates” just about everywhere, but it still shows up as “Employees” in the profile menu dropdown.
Any suggestions on how to fix this would be appreciated!
Thanks!
Hi,
I’ve modified the “Employee” labels to “Associates” just about everywhere, but it still shows up as “Employees” in the profile menu dropdown.
Any suggestions on how to fix this would be appreciated!
Thanks!
Hey
You can change the label by creating a new file in the folder
Suitecrm7.x: custom/Extension/application/Ext/Language/
SuiteCRM 8.x : public/legacy/custom/Extension/application/Ext/Language
name the php file like en_us.employees.php
The contents of the file
<?php
$app_strings['LBL_EMPLOYEES'] = 'Associates';
Then repair and rebuild then refresh the page and the label should be updated
That worked!
Thank you!