Version Description
- Hotfix to remove echo'd text bug
Download this release
Release Info
Developer | nmarks |
Plugin | Event Tracking for Gravity Forms |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.0 to 1.6.1
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: nmarks
|
|
3 |
Tags: gravity forms, google analytics, event tracking
|
4 |
Requires at least: 3.5.2
|
5 |
Tested up to: 4.1
|
6 |
-
Stable tag: 1.6.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -83,6 +83,9 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
86 |
= 1.6.0 =
|
87 |
* Refactored the plugin to use feeds. Now you can have multiple feeds with conditions!
|
88 |
|
3 |
Tags: gravity forms, google analytics, event tracking
|
4 |
Requires at least: 3.5.2
|
5 |
Tested up to: 4.1
|
6 |
+
Stable tag: 1.6.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 1.6.1 =
|
87 |
+
* Hotfix to remove echo'd text bug
|
88 |
+
|
89 |
= 1.6.0 =
|
90 |
* Refactored the plugin to use feeds. Now you can have multiple feeds with conditions!
|
91 |
|
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.6.
|
14 |
* Author: Nathan Marks
|
15 |
* Author URI: http://www.nvisionsolutions.ca
|
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.6.1
|
14 |
* Author: Nathan Marks
|
15 |
* Author URI: http://www.nvisionsolutions.ca
|
16 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
includes/class-gravity-forms-event-tracking-feed.php
CHANGED
@@ -14,7 +14,7 @@ GFForms::include_feed_addon_framework();
|
|
14 |
|
15 |
class Gravity_Forms_Event_Tracking extends GFFeedAddOn {
|
16 |
|
17 |
-
protected $_version = "1.6.
|
18 |
protected $_min_gravityforms_version = "1.8.20";
|
19 |
|
20 |
/**
|
@@ -308,8 +308,6 @@ class Gravity_Forms_Event_Tracking extends GFFeedAddOn {
|
|
308 |
// Pppp Push it!
|
309 |
$this->tracking->addTracking( $event );
|
310 |
|
311 |
-
echo "woof";
|
312 |
-
|
313 |
try {
|
314 |
$this->tracking->send();
|
315 |
} catch (Exception $e) {
|
14 |
|
15 |
class Gravity_Forms_Event_Tracking extends GFFeedAddOn {
|
16 |
|
17 |
+
protected $_version = "1.6.1";
|
18 |
protected $_min_gravityforms_version = "1.8.20";
|
19 |
|
20 |
/**
|
308 |
// Pppp Push it!
|
309 |
$this->tracking->addTracking( $event );
|
310 |
|
|
|
|
|
311 |
try {
|
312 |
$this->tracking->send();
|
313 |
} catch (Exception $e) {
|