Thanks! Is there something I need to update in the job-filters.php file too. I have tried the suggestion although am having no luck.
SELECT ID FROM {$wpdb->posts}
LEFT JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id)
LEFT JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
LEFT JOIN $wpdb->terms ON($wpdb->term_taxonomy.term_id = $wpdb->terms.term_id)
WHERE post_title LIKE ‘%%%s%%’
OR $wpdb->terms.slug LIKE ‘%%%s%%’
OR post_content LIKE ‘%%%s%%’
AND post_type = ‘job_listing’
AND post_status = ‘publish’
I have a simliar proble. If users enter a category (job_type) into keyword_search input nothing appears in the results. Is there a way to include categories with the query?
How was this fixed? I am having the same problem.
thanks
Kevin