WooCommerce: Use of the Product Categories shortcode

I am using the woocommerce plugin for a wordpress site.
This shortcode display the name AND the number of products on every listed category.

[product_categories orderby="name" order="ASC" columns="4" ids="16,17,14,15,18,22,23,24,25,29,30"]

I need to show ONLY the name, and discard the number of products inside every category.

Read More

How can I do that ?

Related posts

1 comment

  1. Use jQuery for hidding the Count.

    Just add the code : jQuery('h3 .count').hide(); in the js file which is called on this page.

    The result is as follows:

    Previous:

    enter image description here

    Now:

    enter image description here

Comments are closed.