Version Description
- Added some information to the event settings section
Download this release
Release Info
| Developer | nmarks |
| Plugin | |
| Version | 1.4.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4.3 to 1.4.4
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.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -13,6 +13,9 @@ Add Google Analytics Event Tracking to your Gravity Forms in less than 5 minutes
|
|
| 13 |
|
| 14 |
This plugin provides an easy way to add Google Analytics event tracking to your Gravity Forms, allowing you to properly track form submissions as events/conversions within Google Analytics.
|
| 15 |
|
|
|
|
|
|
|
|
|
|
| 16 |
= Features =
|
| 17 |
- Automatically send form submission events to Google Analytics
|
| 18 |
- Custom event categories, actions, labels and even values
|
|
@@ -60,7 +63,7 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
|
|
| 60 |
|
| 61 |
= How do I configure the event category, action and label for the form? =
|
| 62 |
|
| 63 |
-
|
| 64 |
|
| 65 |
= Are there any filters/hooks? =
|
| 66 |
|
|
@@ -73,6 +76,9 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
|
|
| 73 |
|
| 74 |
== Changelog ==
|
| 75 |
|
|
|
|
|
|
|
|
|
|
| 76 |
= 1.4.3 =
|
| 77 |
* Fixed backwards-compat issue
|
| 78 |
|
| 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.4
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 13 |
|
| 14 |
This plugin provides an easy way to add Google Analytics event tracking to your Gravity Forms, allowing you to properly track form submissions as events/conversions within Google Analytics.
|
| 15 |
|
| 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
|
| 63 |
|
| 64 |
= How do I configure the event category, action and label for the form? =
|
| 65 |
|
| 66 |
+
Looking for help setting things up? [Read My Setup Guide](http://nvis.io/x8fld)
|
| 67 |
|
| 68 |
= Are there any filters/hooks? =
|
| 69 |
|
| 76 |
|
| 77 |
== Changelog ==
|
| 78 |
|
| 79 |
+
= 1.4.4 =
|
| 80 |
+
* Added some information to the event settings section
|
| 81 |
+
|
| 82 |
= 1.4.3 =
|
| 83 |
* Fixed backwards-compat issue
|
| 84 |
|
admin/class-gravity-forms-event-tracking-admin.php
CHANGED
|
@@ -47,6 +47,7 @@ class Gravity_Forms_Event_Tracking_Admin {
|
|
| 47 |
|
| 48 |
// Add an action link pointing to the options page.
|
| 49 |
$plugin_basename = plugin_basename( plugin_dir_path( realpath( dirname( __FILE__ ) ) ) . $this->plugin_slug . '.php' );
|
|
|
|
| 50 |
add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'add_action_links' ) );
|
| 51 |
|
| 52 |
//Add items to Gravity Forms settings
|
|
@@ -158,7 +159,7 @@ class Gravity_Forms_Event_Tracking_Admin {
|
|
| 158 |
</td>
|
| 159 |
</tr>';
|
| 160 |
$event_settings = array(
|
| 161 |
-
|
| 162 |
'cat' => $event_category,
|
| 163 |
'action' => $event_action,
|
| 164 |
'label' => $event_label,
|
| 47 |
|
| 48 |
// Add an action link pointing to the options page.
|
| 49 |
$plugin_basename = plugin_basename( plugin_dir_path( realpath( dirname( __FILE__ ) ) ) . $this->plugin_slug . '.php' );
|
| 50 |
+
|
| 51 |
add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'add_action_links' ) );
|
| 52 |
|
| 53 |
//Add items to Gravity Forms settings
|
| 159 |
</td>
|
| 160 |
</tr>';
|
| 161 |
$event_settings = array(
|
| 162 |
+
'instructions' => $event_instructions,
|
| 163 |
'cat' => $event_category,
|
| 164 |
'action' => $event_action,
|
| 165 |
'label' => $event_label,
|
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.
|
| 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.4.4
|
| 14 |
* Author: Nathan Marks
|
| 15 |
* Author URI: http://www.nvisionsolutions.ca
|
| 16 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
