Event Tracking for Gravity Forms - Version 1.4.3

Version Description

  • Fixed backwards-compat issue
Download this release

Release Info

Developer nmarks
Plugin Icon 128x128 Event Tracking for Gravity Forms
Version 1.4.3
Comparing to
See all releases

Code changes from version 1.4.2 to 1.4.3

Files changed (2) hide show
  1. README.txt +3 -3
  2. gravity-forms-event-tracking.php +3 -3
README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: nmarks, ronalfy
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.4.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -73,8 +73,8 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
73
 
74
  == Changelog ==
75
 
76
- = 1.4.1 =
77
- * Made sure Gravity Forms is loaded before loading plugin
78
 
79
  = 1.4 =
80
  * Added value for events
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.4.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
73
 
74
  == Changelog ==
75
 
76
+ = 1.4.3 =
77
+ * Fixed backwards-compat issue
78
 
79
  = 1.4 =
80
  * Added value for events
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.4.2
14
  * Author: Nathan Marks
15
  * Author URI: http://www.nvisionsolutions.ca
16
  * Text Domain: gravity-forms-google-analytics-event-tracking
@@ -31,7 +31,7 @@ if ( ! defined( 'WPINC' ) ) {
31
 
32
  require_once( plugin_dir_path( __FILE__ ) . 'public/class-gravity-forms-event-tracking.php' );
33
 
34
- add_action( 'gform_loaded', array( 'Gravity_Forms_Event_Tracking', 'get_instance' ) );
35
 
36
 
37
  /*----------------------------------------------------------------------------*
@@ -46,6 +46,6 @@ if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
46
 
47
  require_once( plugin_dir_path( __FILE__ ) . 'admin/class-gravity-forms-event-tracking-admin.php' );
48
  require_once( plugin_dir_path( __FILE__ ) . 'admin/class-gravity-forms-event-tracking-addon.php' );
49
- add_action( 'gform_loaded', array( 'Gravity_Forms_Event_Tracking_Admin', 'get_instance' ) );
50
 
51
  }
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.4.3
14
  * Author: Nathan Marks
15
  * Author URI: http://www.nvisionsolutions.ca
16
  * Text Domain: gravity-forms-google-analytics-event-tracking
31
 
32
  require_once( plugin_dir_path( __FILE__ ) . 'public/class-gravity-forms-event-tracking.php' );
33
 
34
+ add_action( 'plugins_loaded', array( 'Gravity_Forms_Event_Tracking', 'get_instance' ) );
35
 
36
 
37
  /*----------------------------------------------------------------------------*
46
 
47
  require_once( plugin_dir_path( __FILE__ ) . 'admin/class-gravity-forms-event-tracking-admin.php' );
48
  require_once( plugin_dir_path( __FILE__ ) . 'admin/class-gravity-forms-event-tracking-addon.php' );
49
+ add_action( 'plugins_loaded', array( 'Gravity_Forms_Event_Tracking_Admin', 'get_instance' ) );
50
 
51
  }