Show before main content and after the breadcrumbs in WooCommerce.
Snippet Type
Execute on Child Sites
Snippet
add_action('woocommerce_before_main_content', 'show_category_title', 40, 2);
function show_category_title() {
$cat_title = single_tag_title("", false);
echo '<h1>' . $cat_title . '</h1>';
}