Commit 2d5e873ac72 for woocommerce

commit 2d5e873ac720c9f4b1f426d7ae7ded904c5a2def
Author: Jorge Mucientes <jorgemucientes@gmail.com>
Date:   Mon Jun 8 13:59:43 2026 +0200

    Enable push notifications by default (#65514)

    * Enable push notifications by default

    * Add changelog entry for push notifications default

diff --git a/plugins/woocommerce/changelog/update-enable-push-notifications-by-default b/plugins/woocommerce/changelog/update-enable-push-notifications-by-default
new file mode 100644
index 00000000000..23ce2e118a7
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-enable-push-notifications-by-default
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Enable the push notifications feature by default.
diff --git a/plugins/woocommerce/src/Internal/Features/FeaturesController.php b/plugins/woocommerce/src/Internal/Features/FeaturesController.php
index 77aad3f10c5..780f841c66c 100644
--- a/plugins/woocommerce/src/Internal/Features/FeaturesController.php
+++ b/plugins/woocommerce/src/Internal/Features/FeaturesController.php
@@ -625,7 +625,7 @@ class FeaturesController {
 					'Enable push notifications for the WooCommerce mobile apps to receive order notifications and store updates.',
 					'woocommerce'
 				),
-				'enabled_by_default'           => false,
+				'enabled_by_default'           => true,
 				'is_experimental'              => true,
 				'disable_ui'                   => true,
 				'skip_compatibility_checks'    => false,