Answer the question
In order to leave comments, you need to log in
How to display full woocommerce menu?
Now I'm displaying the menu in the category like this:
<?php
// выводим меню подкатегорий
$cate = get_queried_object();
$cateID = $cate->term_id;
$product_categories = woocommerce_get_product_subcategories( $cateID );
if ( $product_categories ):
?>
<div class="list-group mb-4">
<?php
foreach ( $product_categories as $category ):
wc_get_template( 'content-product_cat.php', array('category' => $category,) );
endforeach;
?>
</div>
<?php
endif;
?>
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