Enhanced Ecommerce Google Analytics Plugin for WooCommerce - Version 4.1.3

Version Description

  • 06/09/2021 =

  • Domain claim notice issue is resolved

Download this release

Release Info

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

Code changes from version 4.1.2 to 4.1.3

admin/class-tvc-admin-helper.php CHANGED
@@ -655,10 +655,10 @@ Class TVC_Admin_Helper{
655
  }else if($googleDetail->is_site_verified ==0 ){
656
  $setting_status['google_shopping_conf']= false;
657
  $setting_status['google_shopping_conf_msg']= "Site verification and domain claim for your merchant center account failed.";
658
- }else if($googleDetail->is_domain_claim ==0 ){
659
  $setting_status['google_shopping_conf']= false;
660
  $setting_status['google_shopping_conf_msg']= "Domain claim is pending. Your store url may be linked to other merchant center account.";
661
- }
662
  }else{
663
  $setting_status['google_shopping_conf']= false;
664
  $missing="";
@@ -754,6 +754,7 @@ Class TVC_Admin_Helper{
754
  $class = 'notice notice-error tvc-notice-error';
755
  if(!isset($_GET['welcome_msg']) && isset($google_detail['setting']) && $google_detail['setting'] ){
756
  $googleDetail = $google_detail['setting'];
 
757
  if(isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id){
758
  $message = "";
759
  $call_js_function_args="";
@@ -763,10 +764,10 @@ Class TVC_Admin_Helper{
763
  }else if(isset($googleDetail->is_site_verified) && $googleDetail->is_site_verified == '0'){
764
  $message = esc_html__('Site verification and domain claim for merchant center account failed. Without a verified and claimed website, your products will get disapproved.');
765
  $call_js_function_args = "site_verified";
766
- }else if(isset($googleDetail->is_domain_claim) && $googleDetail->is_domain_claim == '0'){
767
  $message = esc_html__('Domain claim for merchant center account failed. Without a verified and claimed website, your products will get disapproved.');
768
  $call_js_function_args = "domain_claim";
769
- }
770
  if($message!= ""){
771
  printf('<div class="%1$s"><p><b>%2$s Click <a href="javascript:void(0)" id="call_both_verification" onclick="call_tvc_site_verified_and_domain_claim(\'%3$s\');">here</a></b> to verify and claim the domain.</p></div>', esc_attr($class), esc_html($message),$call_js_function_args);
772
  ?>
655
  }else if($googleDetail->is_site_verified ==0 ){
656
  $setting_status['google_shopping_conf']= false;
657
  $setting_status['google_shopping_conf_msg']= "Site verification and domain claim for your merchant center account failed.";
658
+ }/*else if($googleDetail->is_domain_claim ==0 ){
659
  $setting_status['google_shopping_conf']= false;
660
  $setting_status['google_shopping_conf_msg']= "Domain claim is pending. Your store url may be linked to other merchant center account.";
661
+ } */
662
  }else{
663
  $setting_status['google_shopping_conf']= false;
664
  $missing="";
754
  $class = 'notice notice-error tvc-notice-error';
755
  if(!isset($_GET['welcome_msg']) && isset($google_detail['setting']) && $google_detail['setting'] ){
756
  $googleDetail = $google_detail['setting'];
757
+
758
  if(isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id){
759
  $message = "";
760
  $call_js_function_args="";
764
  }else if(isset($googleDetail->is_site_verified) && $googleDetail->is_site_verified == '0'){
765
  $message = esc_html__('Site verification and domain claim for merchant center account failed. Without a verified and claimed website, your products will get disapproved.');
766
  $call_js_function_args = "site_verified";
767
+ }/*else if(isset($googleDetail->is_domain_claim) && $googleDetail->is_domain_claim == '0'){
768
  $message = esc_html__('Domain claim for merchant center account failed. Without a verified and claimed website, your products will get disapproved.');
769
  $call_js_function_args = "domain_claim";
770
+ }*/
771
  if($message!= ""){
772
  printf('<div class="%1$s"><p><b>%2$s Click <a href="javascript:void(0)" id="call_both_verification" onclick="call_tvc_site_verified_and_domain_claim(\'%3$s\');">here</a></b> to verify and claim the domain.</p></div>', esc_attr($class), esc_html($message),$call_js_function_args);
773
  ?>
admin/css/enhanced-ecommerce-google-analytics-admin.css CHANGED
@@ -12,6 +12,7 @@ body{
12
  background: #f1f1f1 !important;
13
  }
14
  .update-nag, .updated, .error, .is-dismissible, .notice { display: none!important; }
 
15
  .popover{
16
  max-width:500px !important;
17
  }
12
  background: #f1f1f1 !important;
13
  }
14
  .update-nag, .updated, .error, .is-dismissible, .notice { display: none!important; }
15
+ .tvc-notice-error{display: block!important;}
16
  .popover{
17
  max-width:500px !important;
18
  }
enhanced-ecommerce-google-analytics.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  /**
4
  * The plugin bootstrap file
5
  *
@@ -16,7 +15,7 @@
16
  * Plugin Name: Enhanced E-commerce for Woocommerce store
17
  * Plugin URI: https://www.tatvic.com/tatvic-labs/woocommerce-extension/
18
  * Description: Automates eCommerce tracking in Google Analytics, dynamic remarkting in Google Ads, and provides complete Google Shopping features.
19
- * Version: 4.1.2
20
  * Author: Tatvic
21
  * Author URI: www.tatvic.com
22
  * License: GPL-2.0+
@@ -38,7 +37,7 @@ if ( ! defined( 'WPINC' ) ) {
38
  * Start at version 1.0.0 and use SemVer - https://semver.org
39
  * Rename this for your plugin and update it as you release new versions.
40
  */
41
- define( 'PLUGIN_TVC_VERSION', '4.1.2' );
42
  $fullName = plugin_basename( __FILE__ );
43
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
44
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
1
  <?php
 
2
  /**
3
  * The plugin bootstrap file
4
  *
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.1.3
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.1.3' );
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: Tatvic
8
  Requires at least: 1.4.1
9
  Tested up to: 5.8
10
  Requires PHP: 5.6 or Higher
11
- Stable tag: 4.1.2
12
- Version: 4.1.2
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
@@ -380,6 +380,10 @@ You can resolve the duplication of data by removing the manually implemented GA
380
 
381
  == Changelog ==
382
 
 
 
 
 
383
  = 4.1.2 - 02/09/2021 =
384
 
385
  * For some users, products were not auto-updated in the merchant center. The issue is fixed now and the free plugin will update the products in the merchant center at every 25 days interval.
8
  Requires at least: 1.4.1
9
  Tested up to: 5.8
10
  Requires PHP: 5.6 or Higher
11
+ Stable tag: 4.1.3
12
+ Version: 4.1.3
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
380
 
381
  == Changelog ==
382
 
383
+ = 4.1.3 - 06/09/2021 =
384
+
385
+ * Domain claim notice issue is resolved
386
+
387
  = 4.1.2 - 02/09/2021 =
388
 
389
  * For some users, products were not auto-updated in the merchant center. The issue is fixed now and the free plugin will update the products in the merchant center at every 25 days interval.