Reply 303675 to: Show category Title before list grid in category page

Avatar: Olga Barlow
Olga Barlow
Support staff
September 27, 2021 at 18:00

Hello,

You can use WooCommerce hooks to add titles by additional customization. For example, add the below code to child theme functions.php

add_action('woocommerce_archive_description', 'category_title_custom');
function category_title_custom() {
//show category title
$term_object = get_queried_object();
?>
<div class="woocommerce-category-description">
    <div class="title"><?php echo $term_object->name; ?></div>
</div>
<?php
}

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.