WooCommerce Google Analytics Integration - Version 1.5.5

Version Description

  • 2021-12-09 =
  • Tweak - WC 6.0 compatibility.
  • Tweak - WP 5.9 compatibility.
Download this release

Release Info

Developer automattic
Plugin Icon 128x128 WooCommerce Google Analytics Integration
Version 1.5.5
Comparing to
See all releases

Code changes from version 1.5.4 to 1.5.5

changelog.txt CHANGED
@@ -1,5 +1,9 @@
1
  *** Changelog ***
2
 
 
 
 
 
3
  = 1.5.4 - 2021-11-10 =
4
  * Fix - Remove the slow order counting query from admin init.
5
  * Tweak - WC 5.9 compatibility.
1
  *** Changelog ***
2
 
3
+ = 1.5.5 - 2021-12-09 =
4
+ * Tweak - WC 6.0 compatibility.
5
+ * Tweak - WP 5.9 compatibility.
6
+
7
  = 1.5.4 - 2021-11-10 =
8
  * Fix - Remove the slow order counting query from admin init.
9
  * Tweak - WC 5.9 compatibility.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: woocommerce, automattic, claudiosanches, bor0, royho, laurendaviss
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.9
5
  Tested up to: 5.8
6
- Stable tag: 1.5.4
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -13,7 +13,7 @@ Provides integration between Google Analytics and WooCommerce.
13
 
14
  This plugin provides the integration between Google Analytics and the WooCommerce plugin. You can link a referral to a purchase and add transaction information to your Google Analytics data. It also supports Global Site Tag, Universal Analytics, eCommerce, and enhanced eCommerce event tracking.
15
 
16
- Starting from WooCommerce 2.1, this integration is no packaged with WooCommerce and is only available by using this plugin.
17
 
18
  Contributions are welcome via the [GitHub repository](https://github.com/woocommerce/woocommerce-google-analytics-integration).
19
 
@@ -60,6 +60,10 @@ Exact wording depends on the national data privacy laws and should be adjusted.
60
 
61
  == Changelog ==
62
 
 
 
 
 
63
  = 1.5.4 - 2021-11-10 =
64
  * Fix - Remove the slow order counting query from admin init.
65
  * Tweak - WC 5.9 compatibility.
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.9
5
  Tested up to: 5.8
6
+ Stable tag: 1.5.5
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
13
 
14
  This plugin provides the integration between Google Analytics and the WooCommerce plugin. You can link a referral to a purchase and add transaction information to your Google Analytics data. It also supports Global Site Tag, Universal Analytics, eCommerce, and enhanced eCommerce event tracking.
15
 
16
+ Starting from WooCommerce 2.1, this integration is not packaged with WooCommerce and is only available by using this plugin.
17
 
18
  Contributions are welcome via the [GitHub repository](https://github.com/woocommerce/woocommerce-google-analytics-integration).
19
 
60
 
61
  == Changelog ==
62
 
63
+ = 1.5.5 - 2021-12-09 =
64
+ * Tweak - WC 6.0 compatibility.
65
+ * Tweak - WP 5.9 compatibility.
66
+
67
  = 1.5.4 - 2021-11-10 =
68
  * Fix - Remove the slow order counting query from admin init.
69
  * Tweak - WC 5.9 compatibility.
woocommerce-google-analytics-integration.php CHANGED
@@ -5,10 +5,10 @@
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
- * Version: 1.5.4
9
  * WC requires at least: 3.2
10
- * WC tested up to: 5.9
11
- * Tested up to: 5.8
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
14
  * Domain Path: languages/
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
- define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.4' ); // WRCS: DEFINED_VERSION.
24
 
25
  // Maybe show the GA Pro notice on plugin activation.
26
  register_activation_hook(
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
+ * Version: 1.5.5
9
  * WC requires at least: 3.2
10
+ * WC tested up to: 6.0
11
+ * Tested up to: 5.9
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
14
  * Domain Path: languages/
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
+ define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.5' ); // WRCS: DEFINED_VERSION.
24
 
25
  // Maybe show the GA Pro notice on plugin activation.
26
  register_activation_hook(