How to turn meta taxonomies on job listing into a easy to handle list ! SOLVED
This was posted by the great jomarkosabel!!! Awesome way to handle the list at the bottom.
Find this:
<p class="meta"><em><?php the_taxonomies(); ?> <?php if (!jr_check_expired($post) && jr_remaining_days($post)!='-') : ?><?php _e('Job expires in', 'appthemes') ?> <strong><?php echo jr_remaining_days($post); ?></strong>.<?php endif; ?></em></p>
and replace it with this:
<p><strong>Salary</strong></p>
<p><?php the_terms( $post->ID, 'job_salary', '', ', ', ' '); ?> </p>
<p><strong>Job Type</strong></p>
<p><?php the_terms( $post->ID, 'job_type', '', ', ', ' '); ?> </p>
<p><strong>Categories</strong></p>
<p><?php the_terms( $post->ID, 'job_cat', '', ', ', ' '); ?> </p>
<p><?php if (!jr_check_expired($post) && jr_remaining_days($post)!='-') : ?><?php _e('Job expires in', 'appthemes') ?> <strong><?php echo jr_remaining_days($post); ?></strong>.<?php endif; ?></p>
Thanks a MILLION Appthemes! and jomarkosabel.