Page 1 of 1

Changing the names of fields

Posted: 20 Feb 2019, 09:14
by makavelli12
Hi All,

does anyone know if it is possible to change the name of some of the fields?

For example, when you create a job order, you can set the job to be Contract, Hire, Freelancer, Contract to Hire, etc. I would like to change maybe Hire to Permanent and also add Temp for Temporary staff.

Not sure if this is possible.

Hope someone can tell this.

Thanks,

Mak

Re: Changing the names of fields

Posted: 22 Feb 2019, 12:56
by dveos
Hi,

I'm not sure if this is what you're looking for but you can change the "Job Type" by uncommenting the following in your config.php file (root directory).
Code: Select all
/* Job Types mapping
 */
/* Uncomment bellow if you want custom mapping */
/*const JOB_TYPES_LIST = array(
    'PT' => 'Part-Time',
    'FT' => 'Full-Time',
    'ST' => 'Student',
    'FL' => 'Freelance'
);*/
Change to (as an example):-
Code: Select all
const JOB_TYPES_LIST = array(
    'PT' => 'Party Time',
    'FT' => 'Full Time Party',
    'ST' => 'Student Party',
    'FL' => 'Freelancer Party'
);
Hope this helps / is what you were looking for!

Re: Changing the names of fields

Posted: 22 Feb 2019, 13:28
by makavelli12
Thanks!!

Will try this and let you know if it works!