Hi,
Please put this code in your active theme functions.php
, it will disable your individual category archives
add_filter( "register_taxonomy_args", function($args, $taxonomy, $object_type){
if($taxonomy === 'wpdmcategory'){
$args['public'] = false;
}
return $args;
}, 10, 3 );
Thanks.