Version Description
Download this release
Release Info
Developer | Tatvic |
Plugin | Enhanced Ecommerce Google Analytics Plugin for WooCommerce |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- readme.txt +17 -14
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Author URI: http://www.tatvic.com/
|
|
7 |
Author: Tatvic
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 3.8
|
10 |
-
Stable tag: 1.0.
|
11 |
Version: 1.0
|
12 |
License: GPLv3
|
13 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -20,21 +20,22 @@ This plugin provides the integration between Enhanced Ecommerce feature of Googl
|
|
20 |
= Things to keep in mind before enabling the Enhanced E-commerce plugin =
|
21 |
* Enable Enhanced E-commerce for your profile/view. This is a profile / view level setting and can be accessed under Admin > View > E-commerce Settings
|
22 |
* Also, add meaningful labels for your checkout steps. We recommend you to label as, Step 1 : Checkout View; Step 2 : Login; Step 3 : Proceed to payment
|
23 |
-
* Remove standard E-commerce code from thank you along with the ecommerce.js which is included by <code>ga('require', 'ecommerce', 'ecommerce.js');</code
|
24 |
-
* You need to include ec.js. This can be done by adding a single line of code below your default Google Analytics code snippet <code>ga('require',
|
25 |
* If you are using the Universal Analytics Tag of Google Tag Manager, you need to replace it with a custom HTML tag with the following code. Replace UA-XXXX-Y with your property ID
|
26 |
-
<pre
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
</pre>
|
39 |
* Next, you need to activate your plugin from the Settings page for the plugin accessed under, WooCommerce > Settings > Integration > Enhanced Ecommerce Google Analytics
|
40 |
* Check the “Enable Enhanced E-commerce tracking”
|
@@ -70,5 +71,7 @@ This plugin will add the settings to the Integration tab, to be found in the Woo
|
|
70 |
Starting the WooCommerce 2.1 release there are no conflicts. However for earlier the plugin might conflict with the default Google Analytics integration for WooCommerce.
|
71 |
|
72 |
== Changelog ==
|
|
|
73 |
= 1.0 - 25/06/2014 =
|
74 |
* Initial release
|
|
7 |
Author: Tatvic
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 3.8
|
10 |
+
Stable tag: 1.0.3
|
11 |
Version: 1.0
|
12 |
License: GPLv3
|
13 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
20 |
= Things to keep in mind before enabling the Enhanced E-commerce plugin =
|
21 |
* Enable Enhanced E-commerce for your profile/view. This is a profile / view level setting and can be accessed under Admin > View > E-commerce Settings
|
22 |
* Also, add meaningful labels for your checkout steps. We recommend you to label as, Step 1 : Checkout View; Step 2 : Login; Step 3 : Proceed to payment
|
23 |
+
* Remove standard E-commerce code from thank you along with the ecommerce.js which is included by <code>ga('require', 'ecommerce', 'ecommerce.js');</code>. If you are using a third party plugin for e-commerce tracking, you would have to disable the plugin.
|
24 |
+
* You need to include ec.js. This can be done by adding a single line of code below your default Google Analytics code snippet <code>ga('require', 'ec', 'ec.js');</code>
|
25 |
* If you are using the Universal Analytics Tag of Google Tag Manager, you need to replace it with a custom HTML tag with the following code. Replace UA-XXXX-Y with your property ID
|
26 |
+
<pre>
|
27 |
+
<!-- Google Analytics tag -->
|
28 |
+
<script>
|
29 |
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
30 |
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
31 |
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
32 |
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
33 |
|
34 |
+
ga('create', 'UA-XXXX-Y', 'auto');
|
35 |
+
ga('send', 'pageview');
|
36 |
+
ga('require','ec','ec.js');
|
37 |
+
</script>
|
38 |
+
<!-- End Google Analytics -->
|
39 |
</pre>
|
40 |
* Next, you need to activate your plugin from the Settings page for the plugin accessed under, WooCommerce > Settings > Integration > Enhanced Ecommerce Google Analytics
|
41 |
* Check the “Enable Enhanced E-commerce tracking”
|
71 |
Starting the WooCommerce 2.1 release there are no conflicts. However for earlier the plugin might conflict with the default Google Analytics integration for WooCommerce.
|
72 |
|
73 |
== Changelog ==
|
74 |
+
|
75 |
= 1.0 - 25/06/2014 =
|
76 |
* Initial release
|
77 |
+
|