I think he prints a piece because he hooked on woocommerce_breadcrumb.
You can override the Archive-product.php template in your topic.
<?php do_action( 'my_woocommerce_before_main_content' ); ?>
and create another action inside functions.php,
add_action( 'my_woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); add_action( 'my_woocommerce_before_main_content', 'my_woocommerce_print_category_name', 20 );
Inside the functions.php function, you can also create such functions:
function my_woocommerce_print_category_name() {
source share