Remove Location in Job Submit form and in the Backend
-
I tried to remove Location in front end when submitting Job and in the backend part using the following code but it doesn’t work.
Can someone help me with this please?
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' ); function custom_submit_job_form_fields( $fields ) { unset( $fields['location'] ); return $fields; }
- The topic ‘Remove Location in Job Submit form and in the Backend’ is closed to new replies.