Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    Override the job-filters.php template, find this line:

    <?php wp_dropdown_categories( array( 'taxonomy' => 'job_listing_category', 'hierarchical' => 1, 'show_option_all' => __( 'All Job Categories', 'wp-job-manager' ), 'name' => 'search_categories', 'orderby' => 'name', 'selected' => $selected_category ) ); ?>

    And change to:

    <?php wp_dropdown_categories( array( 'taxonomy' => 'job_listing_category', 'hierarchical' => 1, 'show_option_all' => __( 'All Job Categories', 'wp-job-manager' ), 'name' => 'search_categories', 'orderby' => 'name', 'selected' => $selected_category, 'hide_empty' => false ) ); ?>

    https://wpjobmanager.com/document/template-overrides/

    Thread Starter andytan86

    (@andytan86)

    Thank you for the quick response. It solved my problem !!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display all Job category under job filters’ is closed to new replies.