• Extremely light weight and does the job needed well.

    By default, the search doesn’t look great but can be updated through templates. The search itself doesn’t show parameters in the URL so you can never link to custom searches or categories. You can only ever link to the main page list page. The author will state you can use the default wordpress search to find posts but this doesn’t allow you to search by the categories and other search settings.

    Additionally, applications post the title of the job but does not add a link back to the job. This means if you have multiple jobs with the same title, you won’t know which one the candidate actually applied for. For me, posting similar jobs with different pay and hours, this makes application management impossible.

    • This topic was modified 1 year, 10 months ago by tonythetiger.
Viewing 1 replies (of 1 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    Let me answer your queries one by one.

    >>By default, the search doesn’t look great but can be updated through templates. The search itself doesn’t show parameters in the URL so you can never link to custom searches or categories.

    Unfortunately, the current version of our plugin doesn’t have the requested feature.

    We regret we couldn’t be of more help.

    >>Additionally, applications post the title of the job but does not add a link back to the job.

    We believe that you would like to add a back to job button.

    If so, you can achieve your requirement by adding the below code snippet in your child theme’s functions.php file.

    add_filter('the_content', 'add_return_to_jobs_link', 99);
    function add_return_to_jobs_link($content){
    if(is_singular('thjm_jobs')){
    $custom_content = 'Back to job listing';
    $content = $content.$custom_content;
    }
    return $content;
    }

    Also, please add the below style in your Additional CSS file.

    .thjm_back_job{
    float: right;
    }

    Further, please be informed that we will be adding new hooks in that area in the next release of our plugin. We hope it will be very helpful for you.

    >>This means if you have multiple jobs with the same title, you won’t know which one the candidate actually applied for.?

    Could you please raise a ticket through our website??We hope our technical team will be able to help.

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘Great light weight plugin with major application flaw’ is closed to new replies.