Hi @crazywhiz009
Please see this article https://docs.jobboardwp.com/article/1570-templates-structure
And you could customize the job/info.php file https://www.screencast.com/t/ybbMFukeS
<?php $categories = get_terms( [
'taxonomy' => 'jb-job-category',
'hide_empty' => true,
'fields' => 'id=>name',
] );
if ( ! empty( $categories ) ) { ?>
<div class="jb-job-categories">
<?php foreach ( $categories as $category ) { ?>
<div class="jb-job-category" data-id="<?php echo esc_attr( $category->term_id ) ?>">
<?php echo esc_html( $category->name ); ?>
</div>
<?php } ?>
</div>
<?php } ?>
Let me know if you have other questions,
Best Regards!
Hi @crazywhiz009
This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.
Please feel free to re-open this thread if any other questions come up and we’d be happy to help. 🙂
Regards