Limit Characters for Job Title
I decided to limit the amount of characters in the job title to keep the look of the site clean. This is an easy tutorial...
Open submit-job-form located in /includes/forms/submit-job folder find line 31 where the Job Title and add maxlength="38" like I did below .[/B]
<p><label for="job_title"><?php _e('Job title (Maximum characters: 38)', 'appthemes'); ?> <span title="required">*</span></label> <input type="text" class="text" name="job_title"
maxlength="38" id="job_title" value="<?php if (isset($posted['job_title'])) echo $posted['job_title']; ?></p>
That's it now your Job title will be limited to only 38 characters.