I’ve never tested but maybe it’s possible.
1- Inside your loop you have to trigger a hook that will make the heart button be displayed:
do_action( 'woocommerce_before_shop_loop_item' );
2- Besides that you’ll have to add some css classes.
You have to add ‘woocommerce’ to your ‘body’ element. It doesn’t have to be the body necessarily, but on some wrapper element.
3- You also have to add a ‘products’ css class to your loop wrapper, preferably like this:
<ul class="products">
<li class="product"></li>
<li class="product"></li>
</ul>
I hope it helps you. Tell me if you had any luck ??
See you