Viewing 3 replies - 1 through 3 (of 3 total)
  • You may try the trick i did. It works for WP Version 3.91

    1) go to the frontend.php in C:\your_path_on_disc\wordpress\wp-content\plugins\job-manager\

    2) Find the below code ( line +- 280 )

    if( ! empty( $posts ) ) {
    /* Below lines need to be commented */
                    $wp_query->queried_object = $posts[0];
    		$wp_query->queried_object_id = $posts[0]->ID;
    		$wp_query->is_page = true;
    		$wp_query->is_singular = true;
    	}

    3) Comment the four lines:

    `$wp_query->queried_object = $posts[0];
    $wp_query->queried_object_id = $posts[0]->ID;
    $wp_query->is_page = true;
    $wp_query->is_singular = true;’

    4) Now the paginator should work.

    I havent tested it deeply what effects it may have as i just started to work with this plugin and i am not that familiar what and how it processes.

    Plugin Author Thomas Townsend

    (@smb-dev)

    Pagination issue is a bug that has been fixed in the New version we are testing now….soon to be released 🙂

    Plugin Author Thomas Townsend

    (@smb-dev)

    Please ensure you have updated to the latest version of Job Manger 7.21 released the last week of January 2015. Pagination was FIXED in this release.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Multiple job listing pages not showing’ is closed to new replies.