Company fields
-
Hi there !
I need some help as I’m trying to remove all company fields and change some job fields. I added this code to the functions.php :
add_filter( ‘submit_job_form_fields’, ‘custom_submit_job_form_fields’ );
function custom_submit_job_form_fields( $fields ) {
$fields[‘job’][‘job_location’][‘label’] = “Lieu de la mission”;
$fields[‘job’][‘job_location’][‘description’] = “Laissez en blanc si le lieu importe peu”;
$fields[‘job’][‘job_location’][‘placeholder’] = “p.ex. Paris”;
$fields[‘job’][‘job_type’][‘label’] = “Type de mission”;
$fields[‘job’][‘job_category’][‘label’] = “Region”;
$fields[‘job’][‘application’][‘required’] = “false”;
$fields[‘job’][‘application’][‘required’] = “false”;
unset( $fields[‘company’]);
return $fields;
}
And then theirs an error message from WP :“Warning: include(/homepages/43/d543071460/htdocs/wp-content/plugins/wp-job-manager-locations//templates/form-fields/-field.php): failed to open stream: No such file or directory in /homepages/43/d543071460/htdocs/wp-content/plugins/wp-job-manager/wp-job-manager-template.php on line 26
Warning: include(): Failed opening ‘/homepages/43/d543071460/htdocs/wp-content/plugins/wp-job-manager-locations//templates/form-fields/-field.php’ for inclusion (include_path=’.:/usr/lib/php5.4′) in /homepages/43/d543071460/htdocs/wp-content/plugins/wp-job-manager/wp-job-manager-template.php on line 26″
:/ What can I do ?
The topic ‘Company fields’ is closed to new replies.