Thanks for the details, I have done below modifications in your website:
1) Create three posts views:
a) Parent view - expired-job-posts-within-7-days
hidden link
- Query Jobs posts
- Filter by:
Select items with field:
Last Date of Application is a number between PAST_DAY(7), PAST_DAY(1)
- Enable option "Disable the wrapping DIV around the View"
- in view's loop, display below child view with shortcodes:
...
<wpv-loop>[wpv-item index=1][wpv-view name="child-view-expired-job-posts-within-7-days"][wpv-item index=other],[wpv-view name="child-view-expired-job-posts-within-7-days"]</wpv-loop>
...
We use it to output "Job Post Details" post's IDs, for example: 123, 456, 789
b) Child view - expired-job-posts-within-7-days:
hidden link
- Query "Job Post Details" posts
- Filter by:
Select items from the Job Post Details group that are a related to the current post in the loop.
- Enable option "Disable the wrapping DIV around the View"
- in view's loop, display "Job Post Details" post's ID shortcode with shortcodes:
...
<wpv-loop>[wpv-item index=1][wpv-post-id][wpv-item index=other],[wpv-post-id]</wpv-loop>
...
c) List Job Post Details posts
hidden link
- Query Jobs posts
- Filter by:
Include only posts with IDs set by the View shortcode attribute "ids" eg. [wpv-view name="view-name" ids="1"]
- in view's loop, display "Job Post Details" post's information + pagination shortcodes:
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<ol class="wpv-loop js-wpv-loop">
<wpv-loop>
<li>[wpv-post-body view_template="loop-item-in-list-job-post-details-posts"]</li>
</wpv-loop>
</ol>
<!-- wpv-loop-end -->
<ul class="pagination">
<li class="page-item">[wpv-pager-prev-page][wpml-string context="wpv-views"]Previous[/wpml-string][/wpv-pager-prev-page]</li>
<li class="page-item">[wpv-pager-next-page][wpml-string context="wpv-views"]Next[/wpml-string][/wpv-pager-next-page]</li>
</ul>
...
2) Create another page "Weekly Jobs 2":
hidden link
Display the 3rd post view with "ids" attribute:
[wpv-view name="list-job-post-details-posts" ids='[wpv-view name="parent-view-expired-job-posts-within-7-days"]']
See the result here:
hidden link
Please check if it is what you want, thanks