Get New Submit_Job_Form fields to display on Single-Job_Listing
Hello,
I've added a few fields in the submit_job_form.php
<fieldset>
<legend><?php _e('Company Details', APP_TD); ?></legend>
<p><?php _e('Fill in the company section to provide details of the company listing the job.', APP_TD); ?></p>
<p class="required"><label for="your_name"><?php _e('Company Name', APP_TD); ?><span title="required">*</span></label> <input type="text" class="text" name="your_name" id="your_name" value="<?php echo esc_attr( $job->your_name); ?>" /></p>
<p class="required"><label for="your_contact"><?php _e('Contact Person', APP_TD); ?><span title="required">*</span></label> <input type="text" class="text" name="your_contact" id="your_contact" value="<?php echo esc_attr( $job->your_contact); ?>" /></p>
<p class="required"><label for="your_email"><?php _e('Contact Email', APP_TD); ?><span title="required">*</span></label> <input type="text" class="text" name="your_email" id="your_email" value="<?php echo esc_attr( $job->your_email); ?>" /></p>
<p class="optional"><label for="website"><?php _e('Website', APP_TD); ?></label> <input type="text" class="text" name="website" value="<?php echo esc_attr( $job->website); ?>" placeholder="http://" id="website" /></p>
<?php the_listing_logo_editor( $job->ID ); ?>
</fieldset>
These fields show up in the submit job form and you can fill in your info but when you view the listing it doesn't display the information entered. (Only for fields that were added)
I wanted to know how to get these fields to display on the single-job_listing.php. I've tried a bunch of stuff already and can't figure it out. Any help would be much appreciated. Thanks!