Hi there,
Sounds like one of your Hook Elements is missing some code.
1. Go to Appearance > Elements, and open the “Woocommerce Shop Category Menu” Element.
2. In the content area, replace the content with this:
<?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>';
}
?>
3. Make sure “Execute PHP” is activated.
Let me know if this helps or not 🙂