Title: Removing Remote Position Field
Last modified: July 13, 2022

---

# Removing Remote Position Field

 *  Resolved [michdia](https://wordpress.org/support/users/michdia/)
 * (@michdia)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/removing-remote-position-field/)
 * Hello,
 * Can you add a simple way to remove the newly-added remote position field (or 
   simply make it an option that admins have to turn on if they want it)?
 * While I’m sure this is a great addition for some sites, it’s totally messing 
   up my layout. I attempted to remove the remote position field via a function,
   but that led other fields that I had previously added to the job submission page
   to inexplicably disappear.
 * When you add new options like this, it would be best to add a checkbox option
   in the settings so that people who want it can add it, but all users are not 
   forced to deal with it.
 * Anything you can do to remedy ASAP would be most helpful.

Viewing 1 replies (of 1 total)

 *  [Mohamed Mehdi Benchalal](https://wordpress.org/support/users/muffinpeace/)
 * (@muffinpeace)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/removing-remote-position-field/#post-15826461)
 * Hi [@michdia](https://wordpress.org/support/users/michdia/)
 * I’ve seen you didn’t link the Remote option added since it doesn’t apply to your
   website, and I can understand since it’s specific to your use case.
 * You should be able to remove that one by using this code snippet:
 *     ```
       add_filter( 'submit_job_form_fields', 'remove_remote_option' );
   
       function remove_remote_option( $fields ) {
           //remove the remote_position field
           unset($fields['job']['remote_position']);
   
           return $fields;
       }
       ```
   
 * You can download a [plugin like Code Snippets](https://wordpress.org/plugins/code-snippets/)
   and add that as a new snippet to run everywhere on your website.
 * Best,

Viewing 1 replies (of 1 total)

The topic ‘Removing Remote Position Field’ is closed to new replies.

 * ![](https://ps.w.org/wp-job-manager/assets/icon-256x256.gif?rev=2975257)
 * [WP Job Manager](https://wordpress.org/plugins/wp-job-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-job-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-job-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-job-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-job-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-job-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Mohamed Mehdi Benchalal](https://wordpress.org/support/users/muffinpeace/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/removing-remote-position-field/#post-15826461)
 * Status: resolved