Answer the question
In order to leave comments, you need to log in
How to display Woocommerce category name?
Hello.
Tell me, with what variable can I get just the name of the active category?
Previously, the Title was duplicated at the top of the page. In functions.php, there was such a construction for this:
// выводим заголовок категории перед спискос товаров
add_action( 'woocommerce_before_shop_loop', 'my_show_page_title', 99 );
function my_show_page_title() {
if (is_product_category()) {
echo '<h1 class="page-title">'. woocommerce_page_title(false).'</h1>';
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question