WooCommerce Google Analytics Integration - Version 1.4.15

Version Description

  • 2019-11-04 =
  • Tweak - WC 3.8 compatibility.
Download this release

Release Info

Developer cshultz88
Plugin Icon 128x128 WooCommerce Google Analytics Integration
Version 1.4.15
Comparing to
See all releases

Code changes from version 1.4.14 to 1.4.15

changelog.txt CHANGED
@@ -1,6 +1,9 @@
1
  *** Changelog ***
2
 
3
- = 1.4.14 - 2019-xx-xx =
 
 
 
4
  * Fix - Google Analytics JS URL missing quotes.
5
 
6
  = 1.4.13 - 2019-09-03 =
1
  *** Changelog ***
2
 
3
+ = 1.4.15 - 2019-11-04 =
4
+ * Tweak - WC 3.8 compatibility.
5
+
6
+ = 1.4.14 - 2019-09-04 =
7
  * Fix - Google Analytics JS URL missing quotes.
8
 
9
  = 1.4.13 - 2019-09-03 =
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-shultz
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.8
5
- Tested up to: 5.2
6
- Stable tag: 1.4.14
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -68,6 +68,9 @@ Exact wording depends on the national data privacy laws and should be adjusted.
68
 
69
  == Changelog ==
70
 
 
 
 
71
  = 1.4.14 - 2019-09-04 =
72
  * Fix - Google Analytics JS URL missing quotes.
73
 
@@ -100,18 +103,6 @@ Exact wording depends on the national data privacy laws and should be adjusted.
100
  * Tweak - Mention Google Analytics Pro in certain cases.
101
  * Tweak - WC 3.5 compatibility.
102
 
103
- = 1.4.4 - 20/03/2018 =
104
- * Fix - WC30 compatibility error when using deprecated get_product_from_item method.
105
- * Fix - Check object before using methods to prevent errors.
106
- * Fix - Variations not reporting category in cart tracking.
107
- * Add - Filter woocommerce_ga_disable_tracking added to disable tracking.
108
- * Tweak - Rebuilt languages pot file.
109
-
110
- = 1.4.3 - 15/06/2017 =
111
- * Fix - WC 3.x notice by using proper variation data.
112
- * Add - Option to track 404 (Not found) errors.
113
-
114
-
115
  == Upgrade Notice ==
116
  = 1.4.0 =
117
  Adds support for enhanced eCommerce (tracking full store process from view to order)
2
  Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-shultz
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.8
5
+ Tested up to: 5.3
6
+ Stable tag: 1.4.15
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.4.15 - 2019-11-04 =
72
+ * Tweak - WC 3.8 compatibility.
73
+
74
  = 1.4.14 - 2019-09-04 =
75
  * Fix - Google Analytics JS URL missing quotes.
76
 
103
  * Tweak - Mention Google Analytics Pro in certain cases.
104
  * Tweak - WC 3.5 compatibility.
105
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  == Upgrade Notice ==
107
  = 1.4.0 =
108
  Adds support for enhanced eCommerce (tracking full store process from view to order)
woocommerce-google-analytics-integration.php CHANGED
@@ -5,9 +5,9 @@
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.4.14
9
  * WC requires at least: 2.1
10
- * WC tested up to: 3.7
11
  * License: GPLv2 or later
12
  * Text Domain: woocommerce-google-analytics-integration
13
  * Domain Path: languages/
@@ -29,7 +29,7 @@ if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
29
  *
30
  * @var string
31
  */
32
- const VERSION = '1.4.14';
33
 
34
  /**
35
  * Instance of this class.
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.4.15
9
  * WC requires at least: 2.1
10
+ * WC tested up to: 3.8
11
  * License: GPLv2 or later
12
  * Text Domain: woocommerce-google-analytics-integration
13
  * Domain Path: languages/
29
  *
30
  * @var string
31
  */
32
+ const VERSION = '1.4.15';
33
 
34
  /**
35
  * Instance of this class.