Pagination not working on archive.php

I found the solution for this after digging up some support posts on their support forum.

Add this under your theme’s functions.php:

add_filter( 'register_post_type_job_listing', function( $array ) {
    $array['rewrite']['pages'] = true;
    return $array;
} );

REFERENCE: https://wordpress.org/support/topic/pagination-not-working-in-job-listing-archive/