Hide fields from submission form
-
Hello
I would like to hide a few fields from the Job Submission form. I tried to follow those instructions but I still getting an error message. That’s the code I put into my functions.php.
What am I missing?`add_filter( ‘submit_job_form_fields’, ‘custom_submit_job_form_fields’ );
function custom_submit_job_form_fields( $fields ) {
unset( $fields[‘company’][‘company_twitter’] );
unset( $fields[‘company’][‘company_video’] );
return $fields;
}
‘Thanks in advance for your help
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Hide fields from submission form’ is closed to new replies.