Having same problem with a fresh install.. multi-site, job list page ..pagination works fine and is shown full page, when using the category widget the list is not full page, and page 2 retrieves a 404 erros.. my job lists template is:
<style type ="text/css">
table
{
border-collapse:collapse;
}
table, td, th
{
}
table
{
width:100%;
}
th
{
height:35px;
background-color:LightGrey;
}
td
{
padding:5px;
word-break: break-all;
}
</style>
<table class="jobs-table">
<tr class="heading">
<th>Title</th>
<th>Location</th>
<th>Job Description</th>
<th>Apply Now</th>
<th>?</th>
</tr>
[job_loop]
<tr class="job[job_title][job_row_number] job[job_id] ">
<td>[if_job_icon][job_icon]<br />[/if_job_icon] [job_link] [job_title] [/job_link]</td>
<td>[job_field4]</td>
<td>[job_link]More Info[/job_link]</td>
<td>[job_apply_link]Apply Now[/job_apply_link]</td>
<td>[job_checkbox] </td>
</tr>
[/job_loop]
</table>
[job_apply_multi]Apply To All Checked Jobs[/job_apply_multi]
<p></p>
<p></p>
[if_job_page_count]
<div class="job-nav">
<div class="previous">[job_page_previous_link]Page [job_page_previous_number][/job_page_previous_link]</div>
<div class="this">Jobs [job_page_minimum]-[job_page_maximum] of [job_total]</div>
<div class="next">[job_page_next_link]Page [job_page_next_number][/job_page_next_link]</div>
</div>
[/if_job_page_count]
thanks…