I'm trying to add the category name next to the product name on my woocommerce page. I would like to displays it because of SEO reasons, so that Google knows that this product belongs to this category.
My code looks like this at the moment
the_title( '<h1 class="product_title entry-title">', '</h1> <?php echo wc_get_product_category_list($product->get_id()) ?>' );
I tried to get it done by adding
<?php echo wc_get_product_category_list($product->get_id()) ?>
but there is no category name and dev consolse etc also shows no errors.