• Resolved davidhopper777

    (@davidhopper777)


    I am looking to see what it would take to have the keyword field search through the job details? Currently it only searches the Job Title.

    Also, is it possible to search the job attributes?

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

    (@presstigers)

    Hello @davidhopper777,

    – For including, job details in your search results please add the following code in your activated theme’s functions.php file:

    
    /**
     * Include job detail in search results
     */
    function sjb_search_job_details() {
       remove_filter('posts_search', 'sjb_keywords_search_by_title', 10, 2);
    }
    
    add_action('init', 'sjb_search_job_details');
    

    – Yes, it is possible but for this, you need to write the custom code.

    Thank you for writing to us. Let us know if you need our further assistance.

    Regards,
    PressTigers

    Thread Starter davidhopper777

    (@davidhopper777)

    Thank you! This worked perfectly!

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

The topic ‘Keyword search’ is closed to new replies.