Hello Marius,
Sorry for the inconvenience.
Please go to the following file and replace the code at line # 27:
simple-job-board/templates/listing/job-pagination.php
// Pagination Arguments
$pagination_args = array(
'base' => @add_query_arg('page', '%#%'),
'format' => '?paged=%#%',
'total' => $job_query->max_num_pages,
'current' => $current,
'show_all' => TRUE,
'next_text' => '<i class="fa fa-angle-right"></i>',
'prev_text' => '<i class="fa fa-angle-left"></i>',
'type' => 'array',
);
with
// Pagination Arguments
$pagination_args = array(
'base' => @add_query_arg('page', '%#%'),
'format' => '?paged=%#%',
'total' => $job_query->max_num_pages,
'current' => $current,
'show_all' => FALSE,
'next_text' => '<i class="fa fa-angle-right"></i>',
'prev_text' => '<i class="fa fa-angle-left"></i>',
'end_size' => 4,
'mid_size' => 4,
'type' => 'array',
);
Let us know if it resolves your issue or not. We will also resolve this issue in our next release.
Thanks & Regards,
PressTigers