Enhanced Ecommerce Google Analytics Plugin for WooCommerce - Version 4.2.1

Version Description

  • 21/09/2021 =

  • Enhancements on reporting dashboard

  • Some users were facing issue with regarding tvc_lc

  • client_id issue is fixed now

Download this release

Release Info

Developer Tatvic
Plugin Icon 128x128 Enhanced Ecommerce Google Analytics Plugin for WooCommerce
Version 4.2.1
Comparing to
See all releases

Code changes from version 4.2.0 to 4.2.1

admin/css/style.css CHANGED
@@ -956,4 +956,13 @@ button:disabled,button[disabled], button:disabled:hover,button[disabled]:hover{b
956
  padding: 5px 9px;
957
  font-weight: 400;
958
  text-align: center;
 
 
 
 
 
 
 
 
 
959
  }
956
  padding: 5px 9px;
957
  font-weight: 400;
958
  text-align: center;
959
+ }
960
+ .ecomcheckoutfunchartinfo .ecomchartinfoitem{
961
+ padding: 0 15px 0 15px;
962
+ flex: 0 0 24%;
963
+ max-width: 24%;
964
+ position: relative;
965
+ }
966
+ .ecomcheckoutfunchartinfo .chartpercarrow{
967
+ right: 14px;
968
  }
admin/js/tvc-ee-custom.js CHANGED
@@ -351,6 +351,16 @@ var tvc_helper = {
351
  * Ecommerce Checkout Funnel
352
  **/
353
 
 
 
 
 
 
 
 
 
 
 
354
  checkout_funnel_chart = document.getElementById('ecomcheckoutfunchart').getContext('2d');
355
  var bluechartgradient = checkout_funnel_chart.createLinearGradient(0, 0, 0, 800);
356
  bluechartgradient.addColorStop(0, '#002BFC');
351
  * Ecommerce Checkout Funnel
352
  **/
353
 
354
+ var conversion_s1 = ((data.CHECKOUT_2*100)/data.CHECKOUT_1).toFixed(2) || 0;
355
+ if(conversion_s1 == 'NaN'){conversion_s1 = 0;}
356
+ $(".checkoutfunn_s1").html(conversion_s1+"%");
357
+ var conversion_s2 = ((data.CHECKOUT_3*100)/data.CHECKOUT_2).toFixed(2) || 0;
358
+ if(conversion_s2 == 'NaN'){conversion_s2 = 0;}
359
+ $(".checkoutfunn_s2").html(conversion_s2+"%");
360
+ var conversion_s3 = ((data.TRANSACTION*100)/data.CHECKOUT_3).toFixed(2) || 0;
361
+ if(conversion_s3 == 'NaN'){conversion_s3 = 0;}
362
+ $(".checkoutfunn_s3").html(conversion_s3+"%");
363
+
364
  checkout_funnel_chart = document.getElementById('ecomcheckoutfunchart').getContext('2d');
365
  var bluechartgradient = checkout_funnel_chart.createLinearGradient(0, 0, 0, 800);
366
  bluechartgradient.addColorStop(0, '#002BFC');
enhanced-ecommerce-google-analytics.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Enhanced E-commerce for Woocommerce store
16
  * Plugin URI: https://www.tatvic.com/tatvic-labs/woocommerce-extension/
17
  * Description: Automates eCommerce tracking in Google Analytics, dynamic remarkting in Google Ads, and provides complete Google Shopping features.
18
- * Version: 4.2.0
19
  * Author: Tatvic
20
  * Author URI: www.tatvic.com
21
  * License: GPL-2.0+
@@ -37,7 +37,7 @@ if ( ! defined( 'WPINC' ) ) {
37
  * Start at version 1.0.0 and use SemVer - https://semver.org
38
  * Rename this for your plugin and update it as you release new versions.
39
  */
40
- define( 'PLUGIN_TVC_VERSION', '4.2.0' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
15
  * Plugin Name: Enhanced E-commerce for Woocommerce store
16
  * Plugin URI: https://www.tatvic.com/tatvic-labs/woocommerce-extension/
17
  * Description: Automates eCommerce tracking in Google Analytics, dynamic remarkting in Google Ads, and provides complete Google Shopping features.
18
+ * Version: 4.2.1
19
  * Author: Tatvic
20
  * Author URI: www.tatvic.com
21
  * License: GPL-2.0+
37
  * Start at version 1.0.0 and use SemVer - https://semver.org
38
  * Rename this for your plugin and update it as you release new versions.
39
  */
40
+ define( 'PLUGIN_TVC_VERSION', '4.2.1' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
includes/setup/class-conversios-dashboard.php CHANGED
@@ -726,6 +726,28 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
726
  <div class="chartarea">
727
  <canvas id="ecomcheckoutfunchart" width="400" height="300"></canvas>
728
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  </div>
730
  </div>
731
  </div>
@@ -763,7 +785,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
763
  <div class="row dsh-reprttop">
764
  <div class="dshrprttp-left">
765
  <h4>Product Performance Report</h4>
766
- <a href="" class="viewallbtn">View all <img src="<?php echo ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'; ?>" alt="" /></a>
767
  </div>
768
  </div>
769
  <div class="dashtablewrp product_performance_report" id="product_performance_report">
@@ -822,7 +844,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
822
  <div class="row dsh-reprttop">
823
  <div class="dshrprttp-left">
824
  <h4>Source/Medium Performance Report</h4>
825
- <a href="" class="viewallbtn">View all <img src="<?php echo ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'; ?>" alt="" /></a>
826
  </div>
827
  </div>
828
  <div class="dashtablewrp medium_performance_report" id="medium_performance_report">
726
  <div class="chartarea">
727
  <canvas id="ecomcheckoutfunchart" width="400" height="300"></canvas>
728
  </div>
729
+ <hr>
730
+ <div class="ecomchartinfo ecomcheckoutfunchartinfo">
731
+ <div class="ecomchrtinfoflex">
732
+ <div class="ecomchartinfoitem">
733
+ <div class="ecomchartinfolabel">Checkout Step 1</div>
734
+ <div class="chartpercarrow checkoutfunn_s1"></div>
735
+ </div>
736
+ <div class="ecomchartinfoitem">
737
+ <div class="ecomchartinfolabel">Checkout Step 2</div>
738
+ <div class="chartpercarrow checkoutfunn_s2"></div>
739
+ </div>
740
+ <div class="ecomchartinfoitem">
741
+ <div class="ecomchartinfolabel">Checkout Step 3</div>
742
+ <div class="chartpercarrow checkoutfunn_s3"></div>
743
+ </div>
744
+ <div class="ecomchartinfoitem">
745
+ <div class="ecomchartinfolabel">Purchase</div>
746
+ </div>
747
+
748
+ </div>
749
+ </div>
750
+
751
  </div>
752
  </div>
753
  </div>
785
  <div class="row dsh-reprttop">
786
  <div class="dshrprttp-left">
787
  <h4>Product Performance Report</h4>
788
+ <a href="#" class="viewallbtn <?php echo $this->add_upgrdsbrs_btn_calss('download_pdf'); ?>">View all <img src="<?php echo ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'; ?>" alt="" /></a>
789
  </div>
790
  </div>
791
  <div class="dashtablewrp product_performance_report" id="product_performance_report">
844
  <div class="row dsh-reprttop">
845
  <div class="dshrprttp-left">
846
  <h4>Source/Medium Performance Report</h4>
847
+ <a href="" class="viewallbtn <?php echo $this->add_upgrdsbrs_btn_calss('download_pdf'); ?>">View all <img src="<?php echo ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'; ?>" alt="" /></a>
848
  </div>
849
  </div>
850
  <div class="dashtablewrp medium_performance_report" id="medium_performance_report">
public/class-enhanced-ecommerce-google-analytics-public-pro.php CHANGED
@@ -464,7 +464,6 @@ class Enhanced_Ecommerce_Google_Analytics_Public {
464
  gtag("config", "'.esc_js($this->gm_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
465
  "custom_map": {
466
  "dimension1": "user_id",
467
- "dimension2": "client_id",
468
  "dimension3": "user_type",
469
  "dimension4": "page_type",
470
  "dimension5": "day_type",
@@ -495,7 +494,6 @@ class Enhanced_Ecommerce_Google_Analytics_Public {
495
  gtag("config", "'.esc_js($this->gm_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
496
  "custom_map": {
497
  "dimension1": "user_id",
498
- "dimension2": "client_id",
499
  "dimension3": "user_type",
500
  "dimension4": "page_type",
501
  "dimension5": "day_type",
@@ -525,7 +523,6 @@ class Enhanced_Ecommerce_Google_Analytics_Public {
525
  gtag("config", "'.esc_js($this->ga_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
526
  "custom_map": {
527
  "dimension1": "user_id",
528
- "dimension2": "client_id",
529
  "dimension3": "user_type",
530
  "dimension4": "page_type",
531
  "dimension5": "day_type",
464
  gtag("config", "'.esc_js($this->gm_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
465
  "custom_map": {
466
  "dimension1": "user_id",
 
467
  "dimension3": "user_type",
468
  "dimension4": "page_type",
469
  "dimension5": "day_type",
494
  gtag("config", "'.esc_js($this->gm_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
495
  "custom_map": {
496
  "dimension1": "user_id",
 
497
  "dimension3": "user_type",
498
  "dimension4": "page_type",
499
  "dimension5": "day_type",
523
  gtag("config", "'.esc_js($this->ga_id).'",{'.$ga_ip_anonymization.' "cookie_domain":"'.$this->ga_Dname.'",
524
  "custom_map": {
525
  "dimension1": "user_id",
 
526
  "dimension3": "user_type",
527
  "dimension4": "page_type",
528
  "dimension5": "day_type",
public/js/tvc-ee-google-analytics.js CHANGED
@@ -81,7 +81,7 @@ class TVC_Enhanced {
81
  "page_type": this.options.page_type,
82
  "user_type": this.options.user_type,
83
  "user_id": this.options.user_id,
84
- "client_id": this.getClientId(),
85
  "day_type": this.options.day_type,
86
  "local_time_slot_of_the_day": this.options.local_time
87
  });
@@ -100,7 +100,7 @@ class TVC_Enhanced {
100
  gtag("event", "view_item", {
101
  "event_category": "Enhanced-Ecommerce",
102
  "event_label": "view_item_"+tvc_po.tvc_n,
103
- "currency": tvc_lc,
104
  "items": [{
105
  "item_id": tvc_po.tvc_i,
106
  "item_name": tvc_po.tvc_n,
@@ -109,7 +109,7 @@ class TVC_Enhanced {
109
  "affiliation": this.options.affiliation,
110
  "item_variant": tvc_po.tvc_var,
111
  "price": tvc_po.tvc_p,
112
- "currency": tvc_lc,
113
  "quantity": tvc_po.tvc_q,
114
  "index":1
115
  }],
@@ -118,7 +118,7 @@ class TVC_Enhanced {
118
  "page_type": this.options.page_type,
119
  "user_type": this.options.user_type,
120
  "user_id": this.options.user_id,
121
- "client_id": this.getClientId(),
122
  "day_type": this.options.day_type,
123
  "local_time_slot_of_the_day": this.options.local_time
124
  });
@@ -238,7 +238,7 @@ class TVC_Enhanced {
238
  "page_type": this.options.page_type,
239
  "user_type": this.options.user_type,
240
  "user_id": this.options.user_id,
241
- "client_id":this.getClientId(),
242
  "day_type": this.options.day_type,
243
  "local_time_slot_of_the_day": this.options.local_time,
244
  "product_discount": tvc_po.tvc_pd,
@@ -257,17 +257,18 @@ class TVC_Enhanced {
257
  */
258
  }else if( this.options.tracking_option == "GA4" && this.options.measurement_id ){
259
  try {
 
260
  gtag("event", "add_to_cart", {
261
  "event_category":"Enhanced-Ecommerce",
262
  "event_label":"add_to_cart_click",
263
- "currency": tvc_lc,
264
  "non_interaction": true,
265
  "items": [{
266
  "item_id" : tvc_po.tvc_i,
267
  "item_name": tvc_po.tvc_n,
268
  "item_category" :tvc_po.tvc_c,
269
  "price":varPrice,
270
- "currency": tvc_lc,
271
  "quantity": jQuery(this).parent().find("input[name=quantity]").val(),
272
  "item_variant": variation_attribute_name,
273
  "discount": tvc_po.tvc_pd,
@@ -276,7 +277,7 @@ class TVC_Enhanced {
276
  "page_type": this.options.page_type,
277
  "user_type": this.options.user_type,
278
  "user_id": this.options.user_id,
279
- "client_id":this.getClientId(),
280
  "day_type": this.options.day_type,
281
  "local_time_slot_of_the_day": this.options.local_time,
282
  "product_discount": tvc_po.tvc_pd,
@@ -375,7 +376,7 @@ class TVC_Enhanced {
375
  "transaction_id":tvc_td.id,
376
  "affiliation": tvc_td.affiliation,
377
  "value":tvc_td.revenue,
378
- "currency": tvc_lc,
379
  "tax": tvc_td.tax,
380
  "shipping": tvc_td.shipping,
381
  "coupon": tvc_td.coupon,
@@ -386,7 +387,7 @@ class TVC_Enhanced {
386
  "page_type": this.options.page_type,
387
  "user_type": this.options.user_type,
388
  "user_id": this.options.user_id,
389
- "client_id":this.getClientId(),
390
  "day_type": this.options.day_type,
391
  "local_time_slot_of_the_day": purchase_time
392
  });
@@ -396,7 +397,7 @@ class TVC_Enhanced {
396
  "transaction_id":tvc_td.id,
397
  "affiliation": tvc_td.affiliation,
398
  "value":tvc_td.revenue,
399
- "currency": tvc_lc,
400
  "tax": tvc_td.tax,
401
  "shipping": tvc_td.shipping,
402
  "coupon": tvc_td.coupon,
@@ -407,7 +408,7 @@ class TVC_Enhanced {
407
  "page_type": this.options.page_type,
408
  "user_type": this.options.user_type,
409
  "user_id": this.options.user_id,
410
- "client_id":this.getClientId(),
411
  "day_type": this.options.day_type,
412
  "local_time_slot_of_the_day": purchase_time,
413
  "time_taken_to_make_the_purchase": time_to_purchase
@@ -435,7 +436,7 @@ class TVC_Enhanced {
435
  "item_category": tvc_oc[t_item].tvc_c,
436
  "item_variant": tvc_oc[t_item].tvc_attr,
437
  "price": tvc_oc[t_item].tvc_p,
438
- "currency": tvc_lc,
439
  "quantity": tvc_oc[t_item].tvc_q
440
  });
441
  }
@@ -447,7 +448,7 @@ class TVC_Enhanced {
447
  "transaction_id":tvc_td.id,
448
  "affiliation": tvc_td.affiliation,
449
  "value":tvc_td.revenue,
450
- "currency": tvc_lc,
451
  "tax": tvc_td.tax,
452
  "shipping": tvc_td.shipping,
453
  "coupon": tvc_td.coupon,
@@ -458,7 +459,7 @@ class TVC_Enhanced {
458
  "page_type": this.options.page_type,
459
  "user_type": this.options.user_type,
460
  "user_id": this.options.user_id,
461
- "client_id":this.getClientId(),
462
  "day_type": this.options.day_type,
463
  "local_time_slot_of_the_day": purchase_time
464
  });
@@ -468,7 +469,7 @@ class TVC_Enhanced {
468
  "transaction_id":tvc_td.id,
469
  "affiliation": tvc_td.affiliation,
470
  "value":tvc_td.revenue,
471
- "currency": tvc_lc,
472
  "tax": tvc_td.tax,
473
  "shipping": tvc_td.shipping,
474
  "coupon": tvc_td.coupon,
@@ -479,7 +480,7 @@ class TVC_Enhanced {
479
  "page_type": this.options.page_type,
480
  "user_type": this.options.user_type,
481
  "user_id": this.options.user_id,
482
- "client_id":this.getClientId(),
483
  "day_type": this.options.day_type,
484
  "local_time_slot_of_the_day": purchase_time,
485
  "time_taken_to_make_the_purchase": time_to_purchase
81
  "page_type": this.options.page_type,
82
  "user_type": this.options.user_type,
83
  "user_id": this.options.user_id,
84
+ //"client_id": this.getClientId(),
85
  "day_type": this.options.day_type,
86
  "local_time_slot_of_the_day": this.options.local_time
87
  });
100
  gtag("event", "view_item", {
101
  "event_category": "Enhanced-Ecommerce",
102
  "event_label": "view_item_"+tvc_po.tvc_n,
103
+ "currency": this.options.currency,
104
  "items": [{
105
  "item_id": tvc_po.tvc_i,
106
  "item_name": tvc_po.tvc_n,
109
  "affiliation": this.options.affiliation,
110
  "item_variant": tvc_po.tvc_var,
111
  "price": tvc_po.tvc_p,
112
+ "currency": this.options.currency,
113
  "quantity": tvc_po.tvc_q,
114
  "index":1
115
  }],
118
  "page_type": this.options.page_type,
119
  "user_type": this.options.user_type,
120
  "user_id": this.options.user_id,
121
+ //"client_id": this.getClientId(),
122
  "day_type": this.options.day_type,
123
  "local_time_slot_of_the_day": this.options.local_time
124
  });
238
  "page_type": this.options.page_type,
239
  "user_type": this.options.user_type,
240
  "user_id": this.options.user_id,
241
+ //"client_id":this.getClientId(),
242
  "day_type": this.options.day_type,
243
  "local_time_slot_of_the_day": this.options.local_time,
244
  "product_discount": tvc_po.tvc_pd,
257
  */
258
  }else if( this.options.tracking_option == "GA4" && this.options.measurement_id ){
259
  try {
260
+ console.log("call GA4");
261
  gtag("event", "add_to_cart", {
262
  "event_category":"Enhanced-Ecommerce",
263
  "event_label":"add_to_cart_click",
264
+ "currency": this.options.currency,
265
  "non_interaction": true,
266
  "items": [{
267
  "item_id" : tvc_po.tvc_i,
268
  "item_name": tvc_po.tvc_n,
269
  "item_category" :tvc_po.tvc_c,
270
  "price":varPrice,
271
+ "currency": this.options.currency,
272
  "quantity": jQuery(this).parent().find("input[name=quantity]").val(),
273
  "item_variant": variation_attribute_name,
274
  "discount": tvc_po.tvc_pd,
277
  "page_type": this.options.page_type,
278
  "user_type": this.options.user_type,
279
  "user_id": this.options.user_id,
280
+ //"client_id":this.getClientId(),
281
  "day_type": this.options.day_type,
282
  "local_time_slot_of_the_day": this.options.local_time,
283
  "product_discount": tvc_po.tvc_pd,
376
  "transaction_id":tvc_td.id,
377
  "affiliation": tvc_td.affiliation,
378
  "value":tvc_td.revenue,
379
+ "currency": this.options.currency,
380
  "tax": tvc_td.tax,
381
  "shipping": tvc_td.shipping,
382
  "coupon": tvc_td.coupon,
387
  "page_type": this.options.page_type,
388
  "user_type": this.options.user_type,
389
  "user_id": this.options.user_id,
390
+ //"client_id":this.getClientId(),
391
  "day_type": this.options.day_type,
392
  "local_time_slot_of_the_day": purchase_time
393
  });
397
  "transaction_id":tvc_td.id,
398
  "affiliation": tvc_td.affiliation,
399
  "value":tvc_td.revenue,
400
+ "currency": this.options.currency,
401
  "tax": tvc_td.tax,
402
  "shipping": tvc_td.shipping,
403
  "coupon": tvc_td.coupon,
408
  "page_type": this.options.page_type,
409
  "user_type": this.options.user_type,
410
  "user_id": this.options.user_id,
411
+ //"client_id":this.getClientId(),
412
  "day_type": this.options.day_type,
413
  "local_time_slot_of_the_day": purchase_time,
414
  "time_taken_to_make_the_purchase": time_to_purchase
436
  "item_category": tvc_oc[t_item].tvc_c,
437
  "item_variant": tvc_oc[t_item].tvc_attr,
438
  "price": tvc_oc[t_item].tvc_p,
439
+ "currency": this.options.currency,
440
  "quantity": tvc_oc[t_item].tvc_q
441
  });
442
  }
448
  "transaction_id":tvc_td.id,
449
  "affiliation": tvc_td.affiliation,
450
  "value":tvc_td.revenue,
451
+ "currency": this.options.currency,
452
  "tax": tvc_td.tax,
453
  "shipping": tvc_td.shipping,
454
  "coupon": tvc_td.coupon,
459
  "page_type": this.options.page_type,
460
  "user_type": this.options.user_type,
461
  "user_id": this.options.user_id,
462
+ //"client_id":this.getClientId(),
463
  "day_type": this.options.day_type,
464
  "local_time_slot_of_the_day": purchase_time
465
  });
469
  "transaction_id":tvc_td.id,
470
  "affiliation": tvc_td.affiliation,
471
  "value":tvc_td.revenue,
472
+ "currency": this.options.currency,
473
  "tax": tvc_td.tax,
474
  "shipping": tvc_td.shipping,
475
  "coupon": tvc_td.coupon,
480
  "page_type": this.options.page_type,
481
  "user_type": this.options.user_type,
482
  "user_id": this.options.user_id,
483
+ //"client_id":this.getClientId(),
484
  "day_type": this.options.day_type,
485
  "local_time_slot_of_the_day": purchase_time,
486
  "time_taken_to_make_the_purchase": time_to_purchase
readme.txt CHANGED
@@ -8,8 +8,8 @@ Author: Tatvic
8
  Requires at least: 1.4.1
9
  Tested up to: 5.8.1
10
  Requires PHP: 5.6 or Higher
11
- Stable tag: 4.2.0
12
- Version: 4.2.0
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
@@ -172,27 +172,27 @@ Enhanced eCommerce Google analytics plugin tracks the entire user journey on you
172
 
173
 
174
  == Screenshots ==
175
-
176
- 1. This is the main settings page of the plugin from where you can sign in to connect your Google Analytics, Google Ads and Google Merchant Center account.
177
- 2. You can select the type of Google Analytics account you want to tag your website with. You can choose Universal analytics property, Google Analytics 4 property or both and eCommerce tracking in your website will be enabled.
178
- 3. Select existing Google Ads or create a new Google Ads account from here. Once you select Google Ads account from here, your website will start collecting dynamic remarketing tags for all the important eCommerce events in your Google Ads account. Also, your Google Analytics and Google Merchant Center accounts will be linked with selected Google Ads accounts so that you have better insights in your Google Analytics and you can start running Smart shopping campaigns.
179
- 4. Select existing Google Merchant Center or create a new Google Merchant Center account to verify the site and to claim the domain for your Merchant center account approval and Opt your product data into programmes, like surfaces across Google, Shopping ads, local inventory ads and Shopping Actions, to highlight your products to shoppers across Google.
180
- 5. Product sync dashboard when no products are synced to your Google Merchant center account.
181
- 6. Map your WooCommerce product categories with Google Merchant center categories
182
- 7. Map your WooCommerce product attributes with Google Merchant center product attributes to sync/add/update products in your Merchant Center account from Wordpress backend.
183
- 8. Product sync dashboard when the products are synced in your merchant center account.
184
- 9. Create a smart shopping campaign by filling two details once you connect your Google Ads and Google Merchant center accounts A Campaign name B Daily budget.
185
- 10. Google Analytics 4 dashboard 1 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 dashboard. The plugin captures all the data points related to eCommerce events.
186
- 11. Google Analytics 4 dashboard 2 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 dashboard. The plugin captures all the data points related to eCommerce events.
187
- 12. Google Analytics 4--> Monetization 1 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Overview. The plugin captures all the data points related to eCommerce events.
188
- 13. Google Analytics 4--> Monetization 2 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Overview. The plugin captures all the data points related to eCommerce events.
189
- 14. Google Analytics 4 Monetization --> Ecommerce purchases Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Ecommerce purchases. The plugin captures all the data points related to eCommerce events.
190
- 15. Universal Analytics dashboard 1 Once you connect Google Analytics (Universal Analytics) property from the plugin, your WooCommerce store's data will look like this in your Google Analytics dashboard. The plugin captures all the data points related to eCommerce events.
191
- 16. Universal Analytics-->Conversion-->Ecommerce-->Overview Your Google Analytics account will start reflecting data as shown in the screenshot.
192
- 17. Universal Analytics-->Conversion-->Ecommerce-->Shopping Behavior Your Google Analytics account will start reflecting data as shown in the screenshot.
193
- 18. Universal Analytics-->Conversion-->Ecommerce-->Sales Performance Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you data related to purchase events that are triggered on your WooCommerce shop.
194
- 19. Universal Analytics-->Conversion-->Ecommerce-->Product Performance Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you data related to products that are triggered on your WooCommerce shop.
195
- 20. Universal Analytics-->Conversion-->Ecommerce-->Checkout Behavior Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you how users are navigating to your checkout.
196
 
197
  == Frequently Asked Questions ==
198
 
@@ -380,6 +380,14 @@ You can resolve the duplication of data by removing the manually implemented GA
380
 
381
  == Changelog ==
382
 
 
 
 
 
 
 
 
 
383
  = 4.2.0 - 20/09/2021 =
384
 
385
  * In this release, we have rolled out the most demanded feature by you all - Reporting dashboard. Reporting dashboard will showcase all the important e-commerce KPI reports in the plugin's UI.
8
  Requires at least: 1.4.1
9
  Tested up to: 5.8.1
10
  Requires PHP: 5.6 or Higher
11
+ Stable tag: 4.2.1
12
+ Version: 4.2.1
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
172
 
173
 
174
  == Screenshots ==
175
+ 1. Actionable dashboard which displays the key metrics that help your eCommerce business scale faster.
176
+ 2. Ecommerce conversion and checkout funnel reports that help you to visualize user journeys from the Home page to order confirmation.
177
+ 3. Product performance report helps you with informed merchandising decisions to further increase your revenue.
178
+ 4. This is the main onboarding page of the plugin where you can connect the Google Analytics, Google Ads, Google Merchnat center ids. Also, on this page, you can create new Google Ads and merchant center ids if they are not yet created for your business.
179
+ 5. This is the main settings page of the plugin from where you can sign in to connect your Google Analytics, Google Ads and Google Merchant Center account.
180
+ 6. Product sync dashboard when no products are synced to your Google Merchant center account.
181
+ 7. Map your WooCommerce product categories with Google Merchant center categories
182
+ 8. Map your WooCommerce product attributes with Google Merchant center product attributes to sync/add/update products in your Merchant Center account from Wordpress backend.
183
+ 9. Product sync dashboard when the products are synced in your merchant center account.
184
+ 10. Create a smart shopping campaign by filling two details once you connect your Google Ads and Google Merchant center accounts A Campaign name B Daily budget.
185
+ 11. Google Analytics 4 dashboard 1 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 dashboard. The plugin captures all the data points related to eCommerce events.
186
+ 12. Google Analytics 4 dashboard 2 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 dashboard. The plugin captures all the data points related to eCommerce events.
187
+ 13. Google Analytics 4--> Monetization 1 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Overview. The plugin captures all the data points related to eCommerce events.
188
+ 14. Google Analytics 4--> Monetization 2 Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Overview. The plugin captures all the data points related to eCommerce events.
189
+ 15. Google Analytics 4 Monetization --> Ecommerce purchases Once you connect Google Analytics 4 property from the plugin, your WooCommerce store's data will look like this in your Google Analytics 4 under Monetization --> Ecommerce purchases. The plugin captures all the data points related to eCommerce events.
190
+ 16. Universal Analytics dashboard 1 Once you connect Google Analytics (Universal Analytics) property from the plugin, your WooCommerce store's data will look like this in your Google Analytics dashboard. The plugin captures all the data points related to eCommerce events.
191
+ 17. Universal Analytics-->Conversion-->Ecommerce-->Overview Your Google Analytics account will start reflecting data as shown in the screenshot.
192
+ 18. Universal Analytics-->Conversion-->Ecommerce-->Shopping Behavior Your Google Analytics account will start reflecting data as shown in the screenshot.
193
+ 19. Universal Analytics-->Conversion-->Ecommerce-->Sales Performance Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you data related to purchase events that are triggered on your WooCommerce shop.
194
+ 20. Universal Analytics-->Conversion-->Ecommerce-->Product Performance Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you data related to products that are triggered on your WooCommerce shop.
195
+ 21. Universal Analytics-->Conversion-->Ecommerce-->Checkout Behavior Your Google Analytics account will start reflecting data as shown in the screenshot. This report shows you how users are navigating to your checkout.
196
 
197
  == Frequently Asked Questions ==
198
 
380
 
381
  == Changelog ==
382
 
383
+ = 4.2.1 - 21/09/2021 =
384
+
385
+ * Enhancements on reporting dashboard
386
+
387
+ * Some users were facing issue with regarding tvc_lc
388
+
389
+ * client_id issue is fixed now
390
+
391
  = 4.2.0 - 20/09/2021 =
392
 
393
  * In this release, we have rolled out the most demanded feature by you all - Reporting dashboard. Reporting dashboard will showcase all the important e-commerce KPI reports in the plugin's UI.