Commit 075f997fbc0 for woocommerce

commit 075f997fbc0034a7b03a45b3bd1fc58e0f03e1ef
Author: SH Sajal Chowdhury <72102985+shsajalchowdhury@users.noreply.github.com>
Date:   Mon May 25 17:43:45 2026 +0600

    Fix JS TypeError when product excerpt metabox is removed (#64346)

diff --git a/plugins/woocommerce/changelog/pr-64346 b/plugins/woocommerce/changelog/pr-64346
new file mode 100644
index 00000000000..30bc9003d6d
--- /dev/null
+++ b/plugins/woocommerce/changelog/pr-64346
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Fix JS TypeError when product excerpt metabox is removed.
diff --git a/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php b/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php
index 971a77c14ae..2c217909413 100644
--- a/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php
+++ b/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php
@@ -237,7 +237,7 @@ class WC_Products_Tracking {
 							product_type_options_string: productTypeOptionsString,
 							purchase_note:			     $( '#_purchase_note' ).val().length ? 'yes' : 'no',
 							sale_price:				     $( '#_sale_price' ).val() ? 'yes' : 'no',
-							short_description:		     $( '#excerpt' ).val().length ? 'yes' : 'no',
+							short_description:		     $( '#excerpt' ).val() ? 'yes' : 'no',
 							stock_quantity_update:	     ( initialStockValue != currentStockValue ) ? 'Yes' : 'No',
 							tags:					     tagsText.length > 0 ? tagsText.split( ',' ).length : 0,
 							upsells:				     $( '#upsell_ids option' ).length ? 'Yes' : 'No',