Set at Job-Register Form the Job-Description to not required
How can I change in the "submit-job form.php" the Job-Description Field to NOT Required?
Here is the section in the php:
</fieldset>
<fieldset>
<legend><?php _e('Job Description', APP_TD); ?> <span title="required">*</span></legend>
<p><?php _e('Give details about the position, such as responsibilities & salary.', APP_TD); ?><?php if (get_option('jr_html_allowed')=='no') : ?><?php _e(' HTML is not allowed.', APP_TD); ?><?php endif; ?></p>
<p>
<div class="wp_editor_wrapper <?php echo ( isset( $_POST['post_content'] ) && empty( $_POST['post_content'] ) ? 'wp_editor_empty' : '' ); ?>">
<?php if ( 'yes' == get_option('jr_html_allowed') && ! wp_is_mobile() ) { ?>
<?php wp_editor( $job->post_content, 'post_content', jr_get_editor_settings( array( 'editor_class' => 'required' ) ) ); ?>
<?php } else { ?>
<textarea class="required" id="post_content" name="post_content" cols="30" rows="5"><?php echo esc_textarea( $job->post_content ); ?></textarea>
<?php } ?>
</div>
</p>
</fieldset>