I've added WooCommerce featured product to my homepage using a shortcode.
I would like also show the product description as well.
With the code below, the featured product are displayed with the thumbnail, title, price and add to cart button:
<section id="solutions-wrap">
<div class="container">
<?php echo do_shortcode('[featured_products]'); ?>
</div>
After some research, I can't seem to find anything that helps. Should I use the shortcode or a loop?