удалить блок короткое описание в админке

PHOTO EMBED

Fri Sep 30 2022 17:18:37 GMT+0000 (Coordinated Universal Time)

Saved by @mastaklance

/**
 * remove the Short Description field from the WooCommerce admin panel
 */
function remove_short_description() {
remove_meta_box( 'postexcerpt', 'product', 'normal');
}
add_action('add_meta_boxes', 'remove_short_description', 999);
content_copyCOPY