How to display count products in each categories ( menu )
Add this code to your functions.php file on theme folder : add_shortcode( 'cat-counter', 'libar_return_current_category_counter' ); function libar_return_current_category_counter() { $category = is_product_category() ? get_queried_object() : false; return $category ? $category->count : false; }…
(read more)