Event Tracking for Gravity Forms - Version 1.4.1

Version Description

  • Made sure Gravity Forms is loaded before loading plugin
Download this release

Release Info

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

Code changes from version 1.4.0 to 1.4.1

Files changed (2) hide show
  1. README.txt +4 -1
  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.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -73,6 +73,9 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
73
 
74
  == Changelog ==
75
 
 
 
 
76
  = 1.4 =
77
  * Added value for events
78
  * Properly integrated with payment based forms
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.1
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.1 =
77
+ * Made sure Gravity Forms is loaded before loading plugin
78
+
79
  = 1.4 =
80
  * Added value for events
81
  * Properly integrated with payment based forms
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.0
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( 'plugins_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( 'plugins_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.1
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( 'gform_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( 'gform_loaded', array( 'Gravity_Forms_Event_Tracking_Admin', 'get_instance' ) );
50
 
51
  }