I\'m creating a theme designed specifically for usage with woocommerce. This theme\'s design does not utilize the \"Product Short Description\". Removing that description fr
You can remove the Short Description field from the WooCommerce admin area via PHP:
function remove_short_description() { remove_meta_box( 'postexcerpt', 'product', 'normal'); } add_action('add_meta_boxes', 'remove_short_description', 999);