php - Move WooCommerce product description below summary in its own div
one text
Solution:
So thankfully i goolged a bit more and i realized that i put the wrong hook in my functions.
it should be
function woocommerce_template_product_description() {
echo '<div class="proddesc">';
wc_get_template( 'single-product/tabs/description.php' );
echo '</div>';
}
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_product_description', 60 );
Source