product short description under image hook woocommerce code example
Example: product short description under image hook woocommerce
add_action( 'woocommerce_product_thumbnails', 'move_description_to_under_image', 40 );
function move_description_to_under_image(){
the_excerpt();
}