I've hunted high and low how to move the Product Description on a Single Product page of Woocommerce out of the tabs and in to the main section. I just can't find it anywhere!
If anybody can help me out it would be massively appreciated as i'm losing my mind a bit!
Thanks Dan
Edit:
Just after submitting this I had an idea, all of the hooks are just functions so I created a new function and included the product description code:
function woocommerce_template_product_description() {
woocommerce_get_template( 'single-product/tabs/description.php' );
}
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_product_description', 20 );
I'm not sure how perfect a method that is but it does the job I need it to do!