Woocommerce category title and description customization

// Add category title 
add_action('woocommerce_before_main_content', 'show_category_title', 10, 2);

function show_category_title() {
    $cat_title = single_tag_title("", false);
    echo '<h1>' . $cat_title . '</h1>';
}

 

In case of any complain or © copyright or issues please check disclaimer page for faster resolutions.