Version Description
- Released 2016-03-28
- Hotfix - Removing SSL requirement. Needs more testing.
Download this release
Release Info
Developer | ronalfy |
Plugin | Event Tracking for Gravity Forms |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: nmarks, ronalfy
|
|
3 |
Tags: gravity forms, google analytics, event tracking
|
4 |
Requires at least:4.0
|
5 |
Tested up to: 4.5
|
6 |
-
Stable tag: 1.7.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -91,6 +91,10 @@ Check out the documentation on [github](https://github.com/ronalfy/wordpress-gra
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
|
|
94 |
= 1.7.0 =
|
95 |
* Released 2016-03-28
|
96 |
* Plugin will now display an error if an incompatible version of PHP is installed.
|
@@ -167,6 +171,9 @@ Check out the documentation on [github](https://github.com/ronalfy/wordpress-gra
|
|
167 |
|
168 |
== Upgrade Notice ==
|
169 |
|
|
|
|
|
|
|
170 |
= 1.7.0 =
|
171 |
Updates to measurement protocol. Friendly notices for incompatible PHP versions and no UA codes.
|
172 |
|
3 |
Tags: gravity forms, google analytics, event tracking
|
4 |
Requires at least:4.0
|
5 |
Tested up to: 4.5
|
6 |
+
Stable tag: 1.7.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.7.1 =
|
95 |
+
* Released 2016-03-28
|
96 |
+
* Hotfix - Removing SSL requirement. Needs more testing.
|
97 |
+
|
98 |
= 1.7.0 =
|
99 |
* Released 2016-03-28
|
100 |
* Plugin will now display an error if an incompatible version of PHP is installed.
|
171 |
|
172 |
== Upgrade Notice ==
|
173 |
|
174 |
+
= 1.7.1 =
|
175 |
+
Removing SSL requirement. Needs more testing.
|
176 |
+
|
177 |
= 1.7.0 =
|
178 |
Updates to measurement protocol. Friendly notices for incompatible PHP versions and no UA codes.
|
179 |
|
gravity-forms-event-tracking.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Gravity Forms Google Analytics Event Tracking
|
11 |
* Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
|
12 |
* Description: Add Google Analytics event tracking to your Gravity Forms with ease.
|
13 |
-
* Version: 1.7.
|
14 |
* Author: Ronald Huereca
|
15 |
* Author URI: http://mediaron.com
|
16 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
10 |
* Plugin Name: Gravity Forms Google Analytics Event Tracking
|
11 |
* Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
|
12 |
* Description: Add Google Analytics event tracking to your Gravity Forms with ease.
|
13 |
+
* Version: 1.7.1
|
14 |
* Author: Ronald Huereca
|
15 |
* Author URI: http://mediaron.com
|
16 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
includes/class-gravity-forms-event-tracking-feed.php
CHANGED
@@ -387,13 +387,8 @@ class Gravity_Forms_Event_Tracking extends GFFeedAddOn {
|
|
387 |
|
388 |
//Push out the event to each UA code
|
389 |
foreach( $google_analytics_codes as $ua_code ) {
|
390 |
-
|
391 |
-
|
392 |
-
'ssl' => is_ssl()
|
393 |
-
)
|
394 |
-
);
|
395 |
-
$tracking = new \Racecore\GATracking\GATracking( $ua_code, $options );
|
396 |
-
|
397 |
try {
|
398 |
$tracking->sendTracking( $event );
|
399 |
} catch (Exception $e) {
|
@@ -736,4 +731,4 @@ class Gravity_Forms_Event_Tracking extends GFFeedAddOn {
|
|
736 |
|
737 |
}
|
738 |
|
739 |
-
}
|
387 |
|
388 |
//Push out the event to each UA code
|
389 |
foreach( $google_analytics_codes as $ua_code ) {
|
390 |
+
|
391 |
+
$tracking = new \Racecore\GATracking\GATracking( $ua_code );
|
|
|
|
|
|
|
|
|
|
|
392 |
try {
|
393 |
$tracking->sendTracking( $event );
|
394 |
} catch (Exception $e) {
|
731 |
|
732 |
}
|
733 |
|
734 |
+
}
|