Remove Woocommerce Product Short Description

12,051

The right snippet is posted here: How to remove wordpress Short description tab in single product page in wordpress?

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );

function woocommerce_template_single_excerpt() {
        return;
}
Share:
12,051
Joost
Author by

Joost

Updated on June 05, 2022

Comments

  • Joost
    Joost almost 2 years

    I'm trying to remove the Product Short Description showed on a Single Product Page in Woocommerce. By default it's placed right underneath the price, I want it totally gone.

    I tried to use this code: remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20); and placed in functions.php of my Child theme folder but it doesn't change anything.

    If I try woocommerce_template_single_add_to_cart or woocommerce_template_single_meta to see if the piece of code actually works it removes the add to cart button and product meta but for some reason the excerpt isn't affected.

    Any other solutions to remove it? Thanks!! Joost