Hello,
To hide products count you need to comment the code in the wp-content/themes/legenda/woocommerce/content-product_cat.php file:
if ( $category->count > 0 )
echo apply_filters( 'woocommerce_subcategory_count_html', ' (' . $category->count . ')', $category );
We recommend to make any changes in theme source files in child theme https://codex.wordpress.org/Child_Themes so you won’t lose your customizations after the next theme update.
Regards,
Rose Tyler.