I got the category template working by clearing my browser cache, now I am having trouble putting the code together..
In my previous website’s theme, I use
<?php if ( is_category(jobs) ) { ?>
<h1><?php esc_html_e(' No Job Openings','TheStyle'); ?></h1>
<p><?php esc_html_e(' The library has no job openings at this time. Please check back later. ','TheStyle'); ?></p>
but I don’t know how to achieve that with the code used in Hueman. Hopefully someone can help me integrate this. The code for Hueman is:
<div class="post-list group">
<?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
</div><!--/.post-list-->
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>