Hello, I think that I have the solution.
Modify in “theme-woocommerce.php” file (in themes\mystile\includes) the line 651:
echo do_shortcode(‘[product_categories number=””‘);
Option 1 – if you like to show only the main categories:
echo do_shortcode(‘[product_categories number=”” parent=0’);
Option 2 – if you like to show only some ids:
echo do_shortcode(‘[product_categories number=”” ids=”20,21″‘);
Please test it and give me your feedback.
(Sorry for my english)