Version Description
- 04/09/2017 =
- Quick Fix of Minor Bugs.
Download this release
Release Info
Developer | Tatvic |
Plugin | Enhanced Ecommerce Google Analytics Plugin for WooCommerce |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
includes/class-wc-enhanced-ecommerce-google-analytics-integration.php
CHANGED
@@ -18,7 +18,7 @@ class WC_Enhanced_Ecommerce_Google_Analytics extends WC_Integration {
|
|
18 |
* @return void
|
19 |
*/
|
20 |
//set plugin version
|
21 |
-
public $tvc_eeVer = '1.1.
|
22 |
public function __construct() {
|
23 |
|
24 |
//Set Global Variables
|
@@ -402,7 +402,7 @@ class WC_Enhanced_Ecommerce_Google_Analytics extends WC_Integration {
|
|
402 |
$orderpage_prod_Array[get_permalink($_product->id)]=array(
|
403 |
"tvc_id" => esc_html($_product->id),
|
404 |
"tvc_i" => esc_js($_product->get_sku() ? $_product->get_sku() : $_product->id),
|
405 |
-
"tvc_n" => esc_js($
|
406 |
"tvc_p" => esc_js($order->get_item_total($item)),
|
407 |
"tvc_c" => $categories,
|
408 |
"tvc_q"=>esc_js($item["qty"])
|
@@ -829,7 +829,7 @@ class WC_Enhanced_Ecommerce_Google_Analytics extends WC_Integration {
|
|
829 |
t_send_threshold=0;
|
830 |
t_prod_pos=0;
|
831 |
|
832 |
-
t_json_length=Object.keys(t_json_name).length
|
833 |
|
834 |
for(var t_item in t_json_name) {
|
835 |
t_send_threshold++;
|
18 |
* @return void
|
19 |
*/
|
20 |
//set plugin version
|
21 |
+
public $tvc_eeVer = '1.1.2';
|
22 |
public function __construct() {
|
23 |
|
24 |
//Set Global Variables
|
402 |
$orderpage_prod_Array[get_permalink($_product->id)]=array(
|
403 |
"tvc_id" => esc_html($_product->id),
|
404 |
"tvc_i" => esc_js($_product->get_sku() ? $_product->get_sku() : $_product->id),
|
405 |
+
"tvc_n" => esc_js($item["name"]),
|
406 |
"tvc_p" => esc_js($order->get_item_total($item)),
|
407 |
"tvc_c" => $categories,
|
408 |
"tvc_q"=>esc_js($item["qty"])
|
829 |
t_send_threshold=0;
|
830 |
t_prod_pos=0;
|
831 |
|
832 |
+
t_json_length=Object.keys(t_json_name).length;
|
833 |
|
834 |
for(var t_item in t_json_name) {
|
835 |
t_send_threshold++;
|
readme.txt
CHANGED
@@ -236,4 +236,7 @@ Important Note: When you update the plugin, please save your settings again.
|
|
236 |
* Minor Bug Fixes & Optimization.
|
237 |
|
238 |
= 1.1.1 - 04/09/2017 =
|
239 |
-
* Minor Optimization on Order-Received Page.
|
|
|
|
|
|
236 |
* Minor Bug Fixes & Optimization.
|
237 |
|
238 |
= 1.1.1 - 04/09/2017 =
|
239 |
+
* Minor Optimization on Order-Received Page.
|
240 |
+
|
241 |
+
= 1.1.2 - 04/09/2017 =
|
242 |
+
* Quick Fix of Minor Bugs.
|
woocommerce-enhanced-ecommerce-google-analytics-integration.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
/* Copyright
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -21,7 +21,7 @@
|
|
21 |
Description: Allows Enhanced E-commerce Google Analytics tracking code to be inserted into WooCommerce store pages.
|
22 |
Author: Tatvic
|
23 |
Author URI: http://www.tatvic.com
|
24 |
-
Version: 1.1.
|
25 |
*/
|
26 |
if (!defined('ABSPATH')) {
|
27 |
exit; // Exit if accessed directly
|
1 |
<?php
|
2 |
|
3 |
+
/* Copyright 2014 Tatvic
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License, version 2, as
|
21 |
Description: Allows Enhanced E-commerce Google Analytics tracking code to be inserted into WooCommerce store pages.
|
22 |
Author: Tatvic
|
23 |
Author URI: http://www.tatvic.com
|
24 |
+
Version: 1.1.2
|
25 |
*/
|
26 |
if (!defined('ABSPATH')) {
|
27 |
exit; // Exit if accessed directly
|