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

    (@presstigers)

    sanjeeviteam,

    It seems like that you have made few modifications in Job Board plugin. If “yes” then please make sure that you are not modifying plugin core functions.

    There is also another possibility that SJB plugin is conflicting with your website other plugins or code. Please deactivate other plugins except SJB and check this issue again. Let us know if the problem still persists.

    Thanks & Regards,
    PressTigers

    • This reply was modified 9 years, 8 months ago by PressTigers.
    Thread Starter sanjeeviteam

    (@sanjeeviteam)

    Yeah, i have the checked those sides, deactivated the all plugin and there NO modifying the core functions but STILL am facing the same issue can you please look at this issue ASAP. THANKS

    Plugin Author PressTigers

    (@presstigers)

    @sanjeeviteam,

    Sorry for the incontinence. It’s a valid claim. We will resolve this issue in next release of SJB.

    1- For now, please replace “sjb_get_slugs” function with the following code in simple-job-board/public/partials/simple-job-board-template-functions.php (at line no 764)

    
    /**
     * Get Current Page Slug. 
     * 
     * @since   2.2.4
     */
    function sjb_get_slugs() {
        
        if ($link = get_permalink()) {
            $link = str_replace(home_url('/'), '', $link);
            return $link;
        }
        return false;
    }
    

    2- In simple-job-board/templates/job-filters.php & simple-job-board/templates/listing/content-no-jobs-found.php

    Replace following code:

    
    // Get Current Page Slug           
    $slugs = sjb_get_slugs();
    $page_slug = $slugs[0];
    

    with:

    
    // Get Current Page Slug  
    $page_slug = sjb_get_slugs();
    

    Note: If you are using SJB templating then please also update filter template.

    Thanks & Regards,
    PressTigers

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

The topic ‘Search Option Issues’ is closed to new replies.