Enhanced Ecommerce Google Analytics Plugin for WooCommerce - Version 5.0.5

Version Description

  • 15/11/2022 =
  • In this release, we have resolved Average order value UI issue in dashboard.
Download this release

Release Info

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

Code changes from version 5.0.4 to 5.0.5

admin/js/tvc-ee-custom.js CHANGED
@@ -785,12 +785,14 @@ var tvc_helper = {
785
  display_field_val:function(div_id, field, field_val, field_type, currency_code, plugin_url){
786
  if(field_type == "currency"){
787
  if(Math.floor(field_val) != field_val){
788
- field_val = parseFloat(field_val).toFixed(2);
789
  }
790
  var currency = this.get_currency_symbols(currency_code);
791
  jQuery(div_id).html(currency +''+this.numberWithCommas(field_val));
792
  }else if(field_type == "rate"){
793
- field_val = parseFloat(field_val).toFixed(2);
 
 
794
  var img = "";
795
  if(plugin_url != "" && plugin_url != undefined){
796
  img = '<img src="'+plugin_url+'/admin/images/red-down.png">';
@@ -801,7 +803,7 @@ var tvc_helper = {
801
  jQuery(div_id).html(img+field_val+'%');
802
  }else {
803
  if(Math.floor(field_val) != field_val){
804
- field_val = parseFloat(field_val).toFixed(2);
805
  }
806
  jQuery(div_id).html(this.numberWithCommas(field_val));
807
  }
785
  display_field_val:function(div_id, field, field_val, field_type, currency_code, plugin_url){
786
  if(field_type == "currency"){
787
  if(Math.floor(field_val) != field_val){
788
+ field_val = parseFloat(field_val.replace(/,/g, '')).toFixed(2);
789
  }
790
  var currency = this.get_currency_symbols(currency_code);
791
  jQuery(div_id).html(currency +''+this.numberWithCommas(field_val));
792
  }else if(field_type == "rate"){
793
+ if(Math.floor(field_val) != field_val){
794
+ field_val = parseFloat(field_val.replace(/,/g, '')).toFixed(2);
795
+ }
796
  var img = "";
797
  if(plugin_url != "" && plugin_url != undefined){
798
  img = '<img src="'+plugin_url+'/admin/images/red-down.png">';
803
  jQuery(div_id).html(img+field_val+'%');
804
  }else {
805
  if(Math.floor(field_val) != field_val){
806
+ field_val = parseFloat(field_val.replace(/,/g, '')).toFixed(2);
807
  }
808
  jQuery(div_id).html(this.numberWithCommas(field_val));
809
  }
enhanced-ecommerce-google-analytics.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Conversios.io - All-in-one Google Analytics, Pixels and Product Feed Manager for WooCommerce
16
  * Plugin URI: https://www.conversios.io/
17
  * Description: Track Ecommerce events and conversions in Google Analytics, GA4, Google Ads, Facebook Pixel, Snapchat, Pinterest, Tiktok, Bing via Google Tag Manager. Build dynamic audiences and track ROAS performance in Google Ads, Meta (Facebook + Instagram), Snapchat, Pinterest, Tiktok, Microsoft Ads and Twitter to run successful shopping campaigns. Automate your product feed to Google Merchant Center for running performance max campaigns for your WooCommerce products to boost ROAS (Revenue on Ad Spends).
18
- * Version: 5.0.4
19
  * Author: Conversios
20
  * Author URI: conversios.io
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', '5.0.4' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
15
  * Plugin Name: Conversios.io - All-in-one Google Analytics, Pixels and Product Feed Manager for WooCommerce
16
  * Plugin URI: https://www.conversios.io/
17
  * Description: Track Ecommerce events and conversions in Google Analytics, GA4, Google Ads, Facebook Pixel, Snapchat, Pinterest, Tiktok, Bing via Google Tag Manager. Build dynamic audiences and track ROAS performance in Google Ads, Meta (Facebook + Instagram), Snapchat, Pinterest, Tiktok, Microsoft Ads and Twitter to run successful shopping campaigns. Automate your product feed to Google Merchant Center for running performance max campaigns for your WooCommerce products to boost ROAS (Revenue on Ad Spends).
18
+ * Version: 5.0.5
19
  * Author: Conversios
20
  * Author URI: conversios.io
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', '5.0.5' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
readme.txt CHANGED
@@ -8,8 +8,8 @@ Author: Conversios
8
  Requires at least: 4.6
9
  Tested up to: 6.1
10
  Requires PHP: 5.6 or Higher
11
- Stable tag: 5.0.4
12
- Version: 5.0.4
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
@@ -211,6 +211,9 @@ There could be duplicate tracking via manually implemented GA tracking snippet a
211
 
212
 
213
  == Changelog ==
 
 
 
214
  = 5.0.4 - 11/11/2022 =
215
  * We have changed the UI for the menu section.
216
 
8
  Requires at least: 4.6
9
  Tested up to: 6.1
10
  Requires PHP: 5.6 or Higher
11
+ Stable tag: 5.0.5
12
+ Version: 5.0.5
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
211
 
212
 
213
  == Changelog ==
214
+ = 5.0.5 - 15/11/2022 =
215
+ * In this release, we have resolved Average order value UI issue in dashboard.
216
+
217
  = 5.0.4 - 11/11/2022 =
218
  * We have changed the UI for the menu section.
219