Site icon Experience Wordpress Developer Online – Design Develop and Maintenance Support

Remove Product Short Description in Woocommerce

Here I discuss How to Remove Product Short Description in Woocommerce. There are many cases where you dont want to display a products short description in single product page.

So here i will help you achieve that. Let’s have a look. Here is my code. Add the following line of code at the end of your theme’s functions.php file of your active child theme (or theme) and Save the file.

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

If you want to remove the field/panel itself from showing to the admin on the product editing pages than add the following line of code at the end of your theme’s functions.php file of your active child theme (or theme) and Save the file.

function remove_short_description() {
  remove_meta_box( 'postexcerpt', 'product', 'normal');
}
add_action('add_meta_boxes', 'remove_short_description', 999);
Exit mobile version