Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Contributor Adam Heckler

    (@adamkheckler)

    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!

    Thread Starter Raesgo

    (@raesgo)

    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.

    http://raesgo.com/images/job_board_screen_shot.png

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    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?

    http://d.pr/i/130Fy/604o0hxS

    Thanks!

    Thread Starter Raesgo

    (@raesgo)

    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.

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    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?

    Thread Starter Raesgo

    (@raesgo)

    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.

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    Might be worth contacting them for support:

    https://plugins.smyl.es/support/

    Thanks!

    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 ?

    Thread Starter Raesgo

    (@raesgo)

    thanks guys, i contacted support directly and we realized that it was a custom coding error that was causing the problem.

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    @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

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    @chaabok: Please create your own thread per the Forum Welcome policy:

    https://codex.wordpress.org/Forum_Welcome#Where_To_Post

    Thanks!

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Job Categories’ is closed to new replies.