I'm playing around with woocommerce and I followed their instructions to do my own single-product template by copying to my theme's folder within the structure they recommend.
So the thing is that the product page is working pretty well, but I'm facing some issues when is a variable product involved.
My question is, are there any hook or something to display the variations associated with that specific product, something like when you add product's attributes manually like:
<?php echo apply_filters('single_add_to_cart_text', __( 'ADD TO MY BASKET', 'woocommerce' ), $product->product_type); ?>
That will add the single add to cart button individually, is there a similar code to display the product variations? Thanks a lot.