Job Categories
-
Hi there,
We’ve updated the plugin and now out job categories don’t seem to show. Any ideas on why this would be?Thanks in advanced
-
Hi there!
Where aren’t the categories showing? On the main job listings page? On an individual listing?
Can you link me to your site so I can check this out for myself?
Thanks!
Hey Adam,
It’s actually happening on a ‘Submit Job’ page that is used for employers to fill out and post a job posting. Unfortunately you’d have to log in to see the page. Below is a screen shot, if it helps.If you have any other ideas on how you can help me out that would be appreciated.
If you look under Job Listings > Job Categories, do you actually have any created?
If you go to Job Listings > Settings is this box checked?
Thanks!
Ya man, we have multiple categories created. And as far as the Job Listings > Settings box being checked, yes to that as well. So as you can see, we are scratching our heads here.
What about if you switch themes? Does it show then?
If you enable WP_DEBUG and WP_DEBUG_LOG in your wp-config.php file, do you get an errors in your debug.log file? Do you see any JS errors on that page in the browser console?
Ok so it seems that the add-on ‘WP Job Manager Field Editor’ plugin has created the missing categories problem. I discovered this when I disabled the ‘WP Job Manager Field Editor’ plugin and the categories came back.
We have noticed however that all the changes we made with the add-on disappear if disabled. Seems like it’s either or which is not ideal. Unsure why the ‘WP Job Manager Field Editor’ plugin is blocking the categories.
Thanks for your input. Appreciate it.
Hi on the single job listing page I have this – Written by: Category: Published: November 23, 2015 –
But the category is empty how to display the job categoary ?thanks guys, i contacted support directly and we realized that it was a custom coding error that was causing the problem.
@awtoc: Please create your own thread per the Forum Welcome policy:
https://codex.wordpress.org/Forum_Welcome#Where_To_Post
Thanks!
hi,I want to show 10 jobs for each category separately at Homepage.
I used the following commands:
<div id=”box1″>
<?php
$rokesh_query = new WP_Query(array(‘post_status’ =>’publish’,’post_type’ =>’job_listing’,’order’ =>’descending’,’orderby’ =>’ID’,’category’ =>’22’,’posts_per_page’ =>’10’,’offset’ =>’2′,’paged’ => (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1));
?>
<?php if($rokesh_query->have_posts()) :
while($rokesh_query->have_posts()) : $rokesh_query->the_post();?>
<div class=”emp-item-right”>
<span>“>
<?php the_title(); ?>
</span>
</div>
<div class=”emp-item-left”>
<div class=”empdate”>
<i class=”fa-empdate”></i>
<span> <?php the_time(‘y-m-d’) ?></span>
</div>
<div class=”empstate”>
<i class=”fa-emploc”></i>
<span><?php the_job_location( false ); ?></span>
</div>
</div>
<?php endwhile;endif;?>
<?php wp_reset_query(); ?>
</div>
I’ve used the above code on the page, but all posts are displayed while I want to show just post related to a particular class is displayed.
If possible, and if possible, and if the code is wrong, modify it
thanks@chaabok: Please create your own thread per the Forum Welcome policy:
https://codex.wordpress.org/Forum_Welcome#Where_To_Post
Thanks!
The topic ‘Job Categories’ is closed to new replies.