Try this feature to get the name of a product category.
function get_product_category_by_id( $category_id ) {
$term = get_term_by( 'id', $category_id, 'product_cat', 'ARRAY_A' );
return $term['name'];
}
$product_category = get_product_category_by_id( $your_category_id );
Hope this will be helpful.
source
share