wordpresswoocommercewoothemes

Move description under image


How can I move the short description under the image on the single product page? Here's an example.


Solution

  • remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    
    add_action( 'woocommerce_product_thumbnails', 'custom_single_product_short_description', 40 );
    function custom_single_product_short_description(){
        the_excerpt();
    }
    

    Would you please try above code? I hope this is helpful for you.