Job submit form label couldn’t replace
-
Hi
i tried to add this function to change my job submit form label
// Add your own function to filter the fields
add_filter( ‘submit_job_form_fields’, ‘custom_submit_job_form_fields’ );// This is your function which takes the fields, modifies them, and returns them
// You can see the fields which can be changed here: https://github.com/mikejolley/WP-Job-Manager/blob/master/includes/forms/class-wp-job-manager-form-submit-job.php
function custom_submit_job_form_fields( $fields ) {// Here we target one of the job fields (job_title) and change it’s label
$fields[‘company’][‘company_name’][‘label’] = “Personal name”;// And return the modified fields
return $fields;
}But is not working , can anyone let me know what is going wrong here ?
The topic ‘Job submit form label couldn’t replace’ is closed to new replies.