From bda4a4d1a4fdfc4bb7c936461d8d063bec25b2b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 19:03:25 +0700 Subject: [PATCH] Cherry pick 51312 into release/9.3 (#51318) * Disable remote logging feature by default (#51312) * Disable remote logging feature by default * Changelog * Prep for cherry pick 51312 --------- Co-authored-by: Ilyas Foo Co-authored-by: WooCommerce Bot --- plugins/woocommerce/readme.txt | 1 + .../woocommerce/src/Internal/Features/FeaturesController.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/woocommerce/readme.txt b/plugins/woocommerce/readme.txt index c1099958e62..559ac162613 100644 --- a/plugins/woocommerce/readme.txt +++ b/plugins/woocommerce/readme.txt @@ -368,6 +368,7 @@ WooCommerce comes with some sample data you can use to see how products look; im * Dev - Update WP version to 6.6 in Blocks wp-env config. [#49704](https://github.com/woocommerce/woocommerce/pull/49704) * Dev - Use stricter text selector on test [#50848](https://github.com/woocommerce/woocommerce/pull/50848) * Dev - [Filter Products by Price]: Update view when changing the min/max value #50651 [#50651](https://github.com/woocommerce/woocommerce/pull/50651) +* Tweak - Disable remote logging feature by default [#51312](https://github.com/woocommerce/woocommerce/pull/51312) * Tweak - Add GTIN in structured data [#50087](https://github.com/woocommerce/woocommerce/pull/50087) * Tweak - Add link to title, remove link from a description, minor copy changes to site visibility settings page [#50781](https://github.com/woocommerce/woocommerce/pull/50781) * Tweak - Add the `woocommerce_should_clear_cart_after_payment` filter to influence whether the cart should be cleared after payment. [#44515](https://github.com/woocommerce/woocommerce/pull/44515) diff --git a/plugins/woocommerce/src/Internal/Features/FeaturesController.php b/plugins/woocommerce/src/Internal/Features/FeaturesController.php index e777fc63fb8..1b9b4515c33 100644 --- a/plugins/woocommerce/src/Internal/Features/FeaturesController.php +++ b/plugins/woocommerce/src/Internal/Features/FeaturesController.php @@ -241,7 +241,7 @@ class FeaturesController { 'Enable this feature to log errors and related data to Automattic servers for debugging purposes and to improve WooCommerce', 'woocommerce' ), - 'enabled_by_default' => true, + 'enabled_by_default' => false, 'disable_ui' => true, 'is_legacy' => false, 'is_experimental' => true,