My default Matador Jobs links the taxonomy achieve pages when a taxonomy is included in a job description meta.
To change this behaviour, add this code snippet to your site (in child theme functions.php)
add_filter( 'matador_get_the_job_meta_taxonomy_args', function( $args ) {
$args['link']= false;
return $args;
});