How to remove the short description field in WooCommerce? (ok)

https://www.tmdhosting.com/kb/question/how-to-remove-the-short-description-field-in-woocommerce/#:~:text=You%20can%20remove%20the%20Short,%2C%20'remove_short_description'%2C%20999)%3B

C:\xampp\htdocs\jp1\wp-content\themes\muum-child\functions.php

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

How to remove the short description field in WooCommerce?

  • 0

Answered

I a custom them for woocommerce with a design that does not utilize the “Product Short Description”. Removing that description from displaying on the page was easy enough using:

1

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

1 Answer(s)

Best answer

You can remove the Short Description field from the WooCommerce admin panel via PHP:

123456

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

Last updated