I would like to display the page-title over the category-image. I copied this code
<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
from the "template-archive-product.php" to "woocommerce-hook.php" as followed:
$html .= '<h1 class="page-title">'<?php woocommerce_page_title(); ?>'</h1>';
Now the title doesn't appear. When I am checking the dev tools, the title is like a html-comment.
<h1 class="page-title"><!--?php woocommerce_page_title(); ?--></h1>
It would be great if someone could help me.