• Resolved rsasbeih

    (@rsasbeih)


    I’m having trouble removing fields from the job submission page. For example, I would like to remove the ‘location’ field, so I added this snippet to the theme functions.php file as I’ve seen in the documentation. However, nothing happens and the location field remains. Any ideas?

    add_filter( 'submit_job_form_fields', 'remove_location_option' );
    
    function remove_location_option( $fields ) {
        //remove the remote_position field
        unset($fields['job']['location']);
    
        return $fields;
    }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Unable to remove fields’ is closed to new replies.