You can add your own salary type by using filter hooks as following example bellow.
function job_bm_salary_type_29072019($salary_type){
$salary_type['salary_type_1'] = __('Salary Type 1','job-board-manager');
$salary_type['salary_type_2'] = __('Salary Type 2','job-board-manager');
return $salary_type;
}
add_filter('job_bm_salary_type','job_bm_salary_type_29072019');
Remove salary type
you can also remove any salary type by filter hook as following
function job_bm_salary_type_29072019($salary_type){
// Remove salary type "negotiable"
unset($salary_type['negotiable']);
return $salary_type;
}
add_filter('job_bm_salary_type','job_bm_salary_type_29072019');
Default salary types
- negotiable
- fixed
- min-max
