Version Description
Download this release
Release Info
| Developer | nmarks |
| Plugin | |
| Version | 1.5.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5.0 to 1.5.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.5.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -16,6 +16,10 @@ This plugin provides an easy way to add Google Analytics event tracking to your
|
|
| 16 |
= Setup Guide =
|
| 17 |
Looking for help setting things up? [Read My Setup Guide](http://nvis.io/x8fld)
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
= Features =
|
| 20 |
- Automatically send form submission events to Google Analytics
|
| 21 |
- Custom event categories, actions, labels and even values
|
|
@@ -34,7 +38,7 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
|
|
| 34 |
|
| 35 |
= Minimum Requirements =
|
| 36 |
- PHP 5.3+
|
| 37 |
-
- Gravity Forms 1.8+
|
| 38 |
|
| 39 |
= Using The WordPress Dashboard =
|
| 40 |
|
| 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.5.1
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 16 |
= Setup Guide =
|
| 17 |
Looking for help setting things up? [Read My Setup Guide](http://nvis.io/x8fld)
|
| 18 |
|
| 19 |
+
= Minimum Requirements =
|
| 20 |
+
- PHP 5.3+
|
| 21 |
+
- Gravity Forms 1.8.20+
|
| 22 |
+
|
| 23 |
= Features =
|
| 24 |
- Automatically send form submission events to Google Analytics
|
| 25 |
- Custom event categories, actions, labels and even values
|
| 38 |
|
| 39 |
= Minimum Requirements =
|
| 40 |
- PHP 5.3+
|
| 41 |
+
- Gravity Forms 1.8.20+
|
| 42 |
|
| 43 |
= Using The WordPress Dashboard =
|
| 44 |
|
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.5.
|
| 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.5.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.php
CHANGED
|
@@ -13,8 +13,8 @@
|
|
| 13 |
GFForms::include_addon_framework();
|
| 14 |
|
| 15 |
class Gravity_Forms_Event_Tracking extends GFAddOn {
|
| 16 |
-
protected $_version = "1.5.
|
| 17 |
-
protected $_min_gravityforms_version = "1.8.
|
| 18 |
|
| 19 |
/**
|
| 20 |
* The actual slug of this plugin is too long for GF settings to save properly.
|
| 13 |
GFForms::include_addon_framework();
|
| 14 |
|
| 15 |
class Gravity_Forms_Event_Tracking extends GFAddOn {
|
| 16 |
+
protected $_version = "1.5.1";
|
| 17 |
+
protected $_min_gravityforms_version = "1.8.20";
|
| 18 |
|
| 19 |
/**
|
| 20 |
* The actual slug of this plugin is too long for GF settings to save properly.
|
