Hello
I followed the documentation https://pickplugins.com/documentation/job-board-manager/filter-hooks/job_bm_job_type/ and I have pasted the code as snipped. However, now the job type is not highlighted with color like the standard ones, but only gray. Is it possible to change this? And is it possible to change the order of the job types? And if yes, how?



Hi Ray,
Welcome to PickPlugins.
Under the Style tab, you can change the job type badge color for archive page.
Screenshot: https://ibb.co/2yLQHTD
And please use the code below to change the order for the custom job type. You're free to rename the job type that fits you.
Code to use:
function job_bm_job_type_custom99($job_type){
$job_type_list = array(
'temporary'=>__('Temporary', 'job-board-manager'),
'internship'=>__('Internship', 'job-board-manager'),
'freelance'=>__('Freelance', 'job-board-manager'),
'full-time'=>__('Full Timee', 'job-board-manager'),
'part-time'=>__('Part Time', 'job-board-manager'),
);
$job_type = array_merge($job_type_list,$job_type);
return $job_type;
}
add_filter('job_bm_job_type','job_bm_job_type_custom99');
Screenshot: https://ibb.co/LkpxZF4
Let us know if it helps.
Regards.
Glad to know you’ve managed to resolve it!
Let us know if you face any more issues.