Version Description
- Released 2016-09-24
- Bug fix: Conflict with role management plugins
Download this release
Release Info
| Developer | ronalfy |
| Plugin | |
| Version | 2.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.1 to 2.0.3
- README.txt +9 -2
- gravity-forms-event-tracking.php +1 -1
- includes/GFGAET_UA.php +6 -0
README.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: nmarks, ronalfy, bigwing
|
| 3 |
Tags: gravity forms, google analytics, google tag manager, event tracking
|
| 4 |
Requires at least:4.0
|
| 5 |
-
Tested up to: 4.
|
| 6 |
-
Stable tag: 2.0.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -98,6 +98,10 @@ Check out the documentation on [github](https://github.com/ronalfy/wordpress-gra
|
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
= 2.0.1 =
|
| 102 |
* Released 2016-09-23
|
| 103 |
* Bug fix: Google Tag Manager had an extra "s" in the action dataLayer variable.
|
|
@@ -191,6 +195,9 @@ Check out the documentation on [github](https://github.com/ronalfy/wordpress-gra
|
|
| 191 |
|
| 192 |
== Upgrade Notice ==
|
| 193 |
|
|
|
|
|
|
|
|
|
|
| 194 |
= 2.0.1 =
|
| 195 |
Numerous enhancements, including pagination tracking. See the Changelog for more information.
|
| 196 |
|
| 2 |
Contributors: nmarks, ronalfy, bigwing
|
| 3 |
Tags: gravity forms, google analytics, google tag manager, event tracking
|
| 4 |
Requires at least:4.0
|
| 5 |
+
Tested up to: 4.8
|
| 6 |
+
Stable tag: 2.0.3
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
| 101 |
+
= 2.0.3 =
|
| 102 |
+
* Released 2016-09-24
|
| 103 |
+
* Bug fix: Conflict with role management plugins
|
| 104 |
+
|
| 105 |
= 2.0.1 =
|
| 106 |
* Released 2016-09-23
|
| 107 |
* Bug fix: Google Tag Manager had an extra "s" in the action dataLayer variable.
|
| 195 |
|
| 196 |
== Upgrade Notice ==
|
| 197 |
|
| 198 |
+
= 2.0.3 =
|
| 199 |
+
Numerous enhancements, including pagination tracking. See the Changelog for more information.
|
| 200 |
+
|
| 201 |
= 2.0.1 =
|
| 202 |
Numerous enhancements, including pagination tracking. See the Changelog for more information.
|
| 203 |
|
gravity-forms-event-tracking.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Gravity Forms Event Tracking
|
| 4 |
* Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
|
| 5 |
* Description: Add Google Analytics event tracking to your Gravity Forms with ease.
|
| 6 |
-
* Version: 2.0.
|
| 7 |
* Author: Ronald Huereca
|
| 8 |
* Author URI: https://mediaron.com
|
| 9 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
| 3 |
* Plugin Name: Gravity Forms Event Tracking
|
| 4 |
* Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
|
| 5 |
* Description: Add Google Analytics event tracking to your Gravity Forms with ease.
|
| 6 |
+
* Version: 2.0.3
|
| 7 |
* Author: Ronald Huereca
|
| 8 |
* Author URI: https://mediaron.com
|
| 9 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
includes/GFGAET_UA.php
CHANGED
|
@@ -8,6 +8,12 @@ class GFGAET_UA extends GFAddOn {
|
|
| 8 |
protected $_full_path = __FILE__;
|
| 9 |
protected $_title = 'Gravity Forms Google Analytics Event Tracking';
|
| 10 |
protected $_short_title = 'Event Tracking';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
private static $_instance = null;
|
| 13 |
|
| 8 |
protected $_full_path = __FILE__;
|
| 9 |
protected $_title = 'Gravity Forms Google Analytics Event Tracking';
|
| 10 |
protected $_short_title = 'Event Tracking';
|
| 11 |
+
// Members plugin integration
|
| 12 |
+
protected $_capabilities = array( 'gravityforms_event_tracking', 'gravityforms_event_tracking_uninstall' );
|
| 13 |
+
// Permissions
|
| 14 |
+
protected $_capabilities_settings_page = 'gravityforms_event_tracking';
|
| 15 |
+
protected $_capabilities_form_settings = 'gravityforms_event_tracking';
|
| 16 |
+
protected $_capabilities_uninstall = 'gravityforms_event_tracking_uninstall';
|
| 17 |
|
| 18 |
private static $_instance = null;
|
| 19 |
|
