Version Description
- Fixed a bug where the source/medium was not being tracked correctly for PayPal Standard IPN Notification based conversions.
Download this release
Release Info
| Developer | nmarks |
| Plugin | |
| Version | 1.4.5 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4.4 to 1.4.5
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 |
|
|
@@ -76,6 +76,9 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
|
|
| 76 |
|
| 77 |
== Changelog ==
|
| 78 |
|
|
|
|
|
|
|
|
|
|
| 79 |
= 1.4.4 =
|
| 80 |
* Added some information to the event settings section
|
| 81 |
|
| 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.5
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 76 |
|
| 77 |
== Changelog ==
|
| 78 |
|
| 79 |
+
= 1.4.5 =
|
| 80 |
+
* Fixed a bug where the source/medium was not being tracked correctly for PayPal Standard IPN Notification based conversions.
|
| 81 |
+
|
| 82 |
= 1.4.4 =
|
| 83 |
* Added some information to the event settings section
|
| 84 |
|
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.5
|
| 14 |
* Author: Nathan Marks
|
| 15 |
* Author URI: http://www.nvisionsolutions.ca
|
| 16 |
* Text Domain: gravity-forms-google-analytics-event-tracking
|
public/class-gravity-forms-event-tracking.php
CHANGED
|
@@ -191,7 +191,7 @@ class Gravity_Forms_Event_Tracking {
|
|
| 191 |
|
| 192 |
// Fetch the cookie we saved previously and set it into the cookie global
|
| 193 |
// The php analytics library looks for this
|
| 194 |
-
$_COOKIE['_ga'] = gform_get_meta( $entry['
|
| 195 |
|
| 196 |
$form = GFFormsModel::get_form_meta( $entry['form_id'] );
|
| 197 |
|
| 191 |
|
| 192 |
// Fetch the cookie we saved previously and set it into the cookie global
|
| 193 |
// The php analytics library looks for this
|
| 194 |
+
$_COOKIE['_ga'] = gform_get_meta( $entry['id'], 'ga_cookie' );
|
| 195 |
|
| 196 |
$form = GFFormsModel::get_form_meta( $entry['form_id'] );
|
| 197 |
|
