Version Description
To upgrade GA Google Analytics, remove the old version and replace with the new version. Or just click "Update" from the Plugins screen and let WordPress do it for you automatically.
Note: uninstalling the plugin from the WP Plugins screen results in the removal of all settings from the WP database.
For more information, visit the GA Plugin Homepage.
Download this release
Release Info
Developer | specialk |
Plugin | GA Google Analytics |
Version | 20200325 |
Comparing to | |
See all releases |
Code changes from version 20200319 to 20200325
- ga-google-analytics.php +3 -3
- inc/plugin-core.php +1 -1
- readme.txt +7 -2
ga-google-analytics.php
CHANGED
@@ -10,8 +10,8 @@
|
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.1
|
12 |
Tested up to: 5.4
|
13 |
-
Stable tag:
|
14 |
-
Version:
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: ga-google-analytics
|
17 |
Domain Path: /languages
|
@@ -60,7 +60,7 @@ if (!class_exists('GA_Google_Analytics')) {
|
|
60 |
|
61 |
function constants() {
|
62 |
|
63 |
-
if (!defined('GAP_VERSION')) define('GAP_VERSION', '
|
64 |
if (!defined('GAP_REQUIRE')) define('GAP_REQUIRE', '4.1');
|
65 |
if (!defined('GAP_AUTHOR')) define('GAP_AUTHOR', 'Jeff Starr');
|
66 |
if (!defined('GAP_NAME')) define('GAP_NAME', __('GA Google Analytics', 'ga-google-analytics'));
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.1
|
12 |
Tested up to: 5.4
|
13 |
+
Stable tag: 20200325
|
14 |
+
Version: 20200325
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: ga-google-analytics
|
17 |
Domain Path: /languages
|
60 |
|
61 |
function constants() {
|
62 |
|
63 |
+
if (!defined('GAP_VERSION')) define('GAP_VERSION', '20200325');
|
64 |
if (!defined('GAP_REQUIRE')) define('GAP_REQUIRE', '4.1');
|
65 |
if (!defined('GAP_AUTHOR')) define('GAP_AUTHOR', 'Jeff Starr');
|
66 |
if (!defined('GAP_NAME')) define('GAP_NAME', __('GA Google Analytics', 'ga-google-analytics'));
|
inc/plugin-core.php
CHANGED
@@ -82,7 +82,7 @@ function ga_google_analytics_universal() {
|
|
82 |
|
83 |
$custom_code = ga_google_analytics_custom_code($custom_code);
|
84 |
|
85 |
-
$auto = apply_filters('ga_google_analytics_enable_auto', true) ?
|
86 |
|
87 |
$ga_display = "ga('require', 'displayfeatures');";
|
88 |
$ga_link = "ga('require', 'linkid');";
|
82 |
|
83 |
$custom_code = ga_google_analytics_custom_code($custom_code);
|
84 |
|
85 |
+
$auto = apply_filters('ga_google_analytics_enable_auto', true) ? ", 'auto'" : "";
|
86 |
|
87 |
$ga_display = "ga('require', 'displayfeatures');";
|
88 |
$ga_link = "ga('require', 'linkid');";
|
readme.txt
CHANGED
@@ -10,8 +10,8 @@ Donate link: https://monzillamedia.com/donate.html
|
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.1
|
12 |
Tested up to: 5.4
|
13 |
-
Stable tag:
|
14 |
-
Version:
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: ga-google-analytics
|
17 |
Domain Path: /languages
|
@@ -265,6 +265,11 @@ If you like GA Google Analytics, please take a moment to [give a 5-star rating](
|
|
265 |
> New Pro version available! Check out [GA Pro »](https://plugin-planet.com/ga-google-analytics-pro/)
|
266 |
|
267 |
|
|
|
|
|
|
|
|
|
|
|
268 |
**20200319**
|
269 |
|
270 |
* Adds filter hook `ga_google_analytics_options_array`
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.1
|
12 |
Tested up to: 5.4
|
13 |
+
Stable tag: 20200325
|
14 |
+
Version: 20200325
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: ga-google-analytics
|
17 |
Domain Path: /languages
|
265 |
> New Pro version available! Check out [GA Pro »](https://plugin-planet.com/ga-google-analytics-pro/)
|
266 |
|
267 |
|
268 |
+
**20200325**
|
269 |
+
|
270 |
+
* Fixes bug with `auto` parameter
|
271 |
+
* Tests on WordPress 5.4
|
272 |
+
|
273 |
**20200319**
|
274 |
|
275 |
* Adds filter hook `ga_google_analytics_options_array`
|