This is the part of the code where I need to add the job_types
It’s situated in job-manager/single/content-default.php near line 76
<div class=”col-md-3 sidebar sidebar-detail-job”>
<div class=”clearfix”>
<!– Amenities –>
<?php get_template_part( ‘job_manager/single/parts/amenities’ ); ?>
<!– Photos –>
<?php get_template_part( ‘job_manager/single/parts/photos’ ); ?>
<!– Nearby –>
<?php get_template_part( ‘job_manager/single/parts/nearby’ ); ?>
<!– Kitchen –>
<?php get_template_part( ‘job_manager/single/parts/types’ ); ?>
So I added this last one ‘Kitchen’ where I added the template part “types”.
I also added a field named job_types in listing fields.
But when I go to the listing page, this block doesn’t show up.