Show before main content and after the breadcrumbs in WooCommerce

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>';
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.