function add_custom_field_subcat( $category ) {
$value = wp_get_terms_meta($category->term_id,'ml-atr-cat', 'product_cat_');
echo '<div class="ml-subcat-atr">'.$value.'</div>';
}
add_action( 'woocommerce_after_subcategory_title', 'add_custom_field_subcat', 15 );
function add_custom_field_subcat( $category ) {
$value = get_field('ml-acf-pc-atr', 'product_cat_'. $category->term_id);
echo '(' . ( $value) . ')';
}
add_action( 'woocommerce_after_subcategory_title', 'add_custom_field_subcat', 15 );