Hi,
Niche, by default adds a Hook Element named “Woocommerce Shop Category Menu”.
It contains this PHP snippet.
<?php
$cat_args = array(
'orderby' => 'name',
'order' => 'asc',
'hide_empty' => true,
);
$product_categories = get_terms( 'product_cat', $cat_args );
if ( ! empty( $product_categories ) ) {
echo '<ul class="woo-cat-nav">';
foreach ( $product_categories as $key => $category ) {
printf(
'<li>
<a href="%1$s">
%2$s
</a>
</li>',
get_term_link( $category ),
$category->name
);
}
echo '</ul>';
}
?>
Here’s its hook and PHP execution setting:
https://share.getcloudapp.com/JrugEjPz
As for display rule setting:
https://share.getcloudapp.com/wbuPxZjo
A wise man once said:
"Have you cleared your cache?"