Enhanced Ecommerce Google Analytics Plugin for WooCommerce - Version 4.1.1

Version Description

  • 24/08/2021 =

  • Fixed the issue for fetching Google ads account for some store

  • Fixed WordPress backend stying bug

Download this release

Release Info

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

Code changes from version 4.1.0 to 4.1.1

admin/class-conversios-onboarding.php CHANGED
@@ -13,6 +13,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
13
  protected $app_id =1;
14
  protected $plan_id = 1;
15
  protected $tvc_data = array();
 
16
  public function __construct( ){
17
  if ( ! is_admin() ) {
18
  return;
@@ -24,13 +25,26 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
24
  $this->version = PLUGIN_TVC_VERSION;
25
  $this->customApiObj = new CustomApi();
26
  $this->TVC_Admin_Helper = new TVC_Admin_Helper();
27
- $this->subscriptionId = $this->TVC_Admin_Helper->get_subscriptionId();
 
 
28
  $this->connect_url = $this->TVC_Admin_Helper->get_connect_url();
29
  $this->tvc_data = $this->TVC_Admin_Helper->get_store_data();
30
- $g_mail = get_option('ee_customer_gmail');
31
- $this->tvc_data['g_mail']="";
32
- if($g_mail){
33
- $this->tvc_data['g_mail']=$g_mail;
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
 
36
  /**
@@ -93,7 +107,11 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
93
  $this->tvc_data['g_mail'] = $_GET['g_mail'];
94
  $completed_last_step ="step-1";
95
  $complete_step["step-0"] = 1;
96
- }
 
 
 
 
97
  //$this->tvc_data = json_encode($this->tvc_data);
98
  }
99
 
@@ -919,16 +937,18 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
919
  * onboarding page add scripts file
920
  */
921
  public function add_scripts(){
922
- wp_register_style('conversios-select2-css',ENHANCAD_PLUGIN_URL . '/admin/css/select2.css');
923
- wp_enqueue_style('conversios-style-css',ENHANCAD_PLUGIN_URL . '/admin/css/style.css', array(), $this->version, 'all');
924
- wp_enqueue_style('conversios-responsive-css',ENHANCAD_PLUGIN_URL . '/admin/css/responsive.css', array(), $this->version, 'all');
925
- wp_enqueue_style('conversios-select2-css');
 
926
 
927
 
928
- wp_enqueue_script( 'conversios-jquery-js', ENHANCAD_PLUGIN_URL . '/admin/js/jquery-3.5.1.min.js', array( 'jquery' ), $this->version, false );
929
- wp_register_script('conversios-select2-js', ENHANCAD_PLUGIN_URL.'/admin/js/select2.min.js');
930
- wp_enqueue_script('conversios-select2-js');
931
- wp_enqueue_script( 'conversios-onboarding-js', ENHANCAD_PLUGIN_URL . '/admin/js/onboarding-custom.js', array( 'jquery' ), $this->version, false );
 
932
  }
933
  /**
934
  * Onboarding page register menu
@@ -958,16 +978,13 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
958
  // Bail if activating from network, or bulk.
959
  if ( isset( $_GET['activate-multi'] ) ) { // WPCS: CSRF ok, input var ok.
960
  return;
961
- }
962
-
 
 
 
 
963
 
964
- /*if ( apply_filters( 'monsterinsights_enable_onboarding_wizard', false === $upgrade ) ) {*/
965
- //$redirect = admin_url( 'index.php?page=conversios_onboarding&conversios-redirect=1' );
966
- $path = 'index.php?page=conversios_onboarding&conversios-redirect=1';
967
- $redirect = is_network_admin() ? network_admin_url( $path ) : admin_url( $path );
968
- wp_safe_redirect( $redirect );
969
- exit;
970
- //}
971
  }
972
  //End function
973
  }//End Conversios_Onboarding Class
13
  protected $app_id =1;
14
  protected $plan_id = 1;
15
  protected $tvc_data = array();
16
+ protected $last_login;
17
  public function __construct( ){
18
  if ( ! is_admin() ) {
19
  return;
25
  $this->version = PLUGIN_TVC_VERSION;
26
  $this->customApiObj = new CustomApi();
27
  $this->TVC_Admin_Helper = new TVC_Admin_Helper();
28
+ $ee_additional_data = $this->TVC_Admin_Helper->get_ee_additional_data();
29
+
30
+
31
  $this->connect_url = $this->TVC_Admin_Helper->get_connect_url();
32
  $this->tvc_data = $this->TVC_Admin_Helper->get_store_data();
33
+ /**
34
+ * check last login for check RefreshToken
35
+ */
36
+ if(isset($ee_additional_data['ee_last_login']) && $ee_additional_data['ee_last_login'] != ""){
37
+ $this->last_login = $ee_additional_data['ee_last_login'];
38
+ $current = current_time( 'timestamp' );
39
+ $diffrent_days = floor(( $current - $this->last_login)/(60*60*24));
40
+ if($diffrent_days < 100){
41
+ $this->subscriptionId = $this->TVC_Admin_Helper->get_subscriptionId();
42
+ $g_mail = get_option('ee_customer_gmail');
43
+ $this->tvc_data['g_mail']="";
44
+ if($g_mail){
45
+ $this->tvc_data['g_mail']=$g_mail;
46
+ }
47
+ }
48
  }
49
 
50
  /**
107
  $this->tvc_data['g_mail'] = $_GET['g_mail'];
108
  $completed_last_step ="step-1";
109
  $complete_step["step-0"] = 1;
110
+
111
+ $ee_additional_data = $this->TVC_Admin_Helper->get_ee_additional_data();
112
+ $ee_additional_data['ee_last_login']=current_time( 'timestamp' );
113
+ $this->TVC_Admin_Helper->set_ee_additional_data($ee_additional_data);
114
+ }
115
  //$this->tvc_data = json_encode($this->tvc_data);
116
  }
117
 
937
  * onboarding page add scripts file
938
  */
939
  public function add_scripts(){
940
+ if(isset($_GET['page']) && $_GET['page'] == "conversios_onboarding"){
941
+ wp_register_style('conversios-select2-css',ENHANCAD_PLUGIN_URL . '/admin/css/select2.css');
942
+ wp_enqueue_style('conversios-style-css',ENHANCAD_PLUGIN_URL . '/admin/css/style.css', array(), $this->version, 'all');
943
+ wp_enqueue_style('conversios-responsive-css',ENHANCAD_PLUGIN_URL . '/admin/css/responsive.css', array(), $this->version, 'all');
944
+ wp_enqueue_style('conversios-select2-css');
945
 
946
 
947
+ wp_enqueue_script( 'conversios-jquery-js', ENHANCAD_PLUGIN_URL . '/admin/js/jquery-3.5.1.min.js', array( 'jquery' ), $this->version, false );
948
+ wp_register_script('conversios-select2-js', ENHANCAD_PLUGIN_URL.'/admin/js/select2.min.js');
949
+ wp_enqueue_script('conversios-select2-js');
950
+ wp_enqueue_script( 'conversios-onboarding-js', ENHANCAD_PLUGIN_URL . '/admin/js/onboarding-custom.js', array( 'jquery' ), $this->version, false );
951
+ }
952
  }
953
  /**
954
  * Onboarding page register menu
978
  // Bail if activating from network, or bulk.
979
  if ( isset( $_GET['activate-multi'] ) ) { // WPCS: CSRF ok, input var ok.
980
  return;
981
+ }
982
+
983
+ $path = 'index.php?page=conversios_onboarding&conversios-redirect=1';
984
+ $redirect = is_network_admin() ? network_admin_url( $path ) : admin_url( $path );
985
+ wp_safe_redirect( $redirect );
986
+ exit;
987
 
 
 
 
 
 
 
 
988
  }
989
  //End function
990
  }//End Conversios_Onboarding Class
admin/css/enhanced-ecommerce-google-analytics-admin.css CHANGED
@@ -11,7 +11,7 @@
11
  body{
12
  background: #f1f1f1 !important;
13
  }
14
- .update-nag, .updated, .error, .is-dismissible { display: none; }
15
  .popover{
16
  max-width:500px !important;
17
  }
11
  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
  }
admin/css/style.css CHANGED
@@ -1,6 +1,7 @@
1
  @charset "utf-8";
2
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,500&display=swap');
3
  /*rc */
 
4
  #create_merchant_account{
5
  background-color: #002BFC;
6
  border-radius: 6px;
1
  @charset "utf-8";
2
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,500&display=swap');
3
  /*rc */
4
+ .update-nag, .updated, .error, .is-dismissible, .notice { display: none !important; }
5
  #create_merchant_account{
6
  background-color: #002BFC;
7
  border-radius: 6px;
enhanced-ecommerce-google-analytics.php CHANGED
@@ -16,7 +16,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.0
20
  * Author: Tatvic
21
  * Author URI: www.tatvic.com
22
  * License: GPL-2.0+
@@ -38,7 +38,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.0' );
42
  $fullName = plugin_basename( __FILE__ );
43
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
44
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
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.1
20
  * Author: Tatvic
21
  * Author URI: www.tatvic.com
22
  * License: GPL-2.0+
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.1' );
42
  $fullName = plugin_basename( __FILE__ );
43
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
44
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
readme.txt CHANGED
@@ -2,26 +2,28 @@
2
  Contributors: Tatvic, Conversios
3
  Plugin Name: Enhanced Ecommerce for WooCommerce Store
4
  Plugin URI: https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/
5
- Tags: Google Analytics tracking, Dynamic Remarketing,Google Shopping automation,Google Shopping, Universal Analytics tracking,Ecommerce tracking, google analytics 4 tracking, google shopping feed, Web Analytics, Web Analytics For WooCommerce, WooCommerce Enhanced Ecommerce, WooCommerce Google Analytics, Google Analytics Plugin, Enhanced Ecommerce Plugin
6
  Author URI: https://www.tatvic.com/
7
  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.0
12
- Version: 4.1.0
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
16
- Automates eCommerce tracking in Google Analytics and the complete Google Shopping solution with dynamic remarketing tags.
17
 
18
  == Product Description ==
19
 
20
- ###GOOGLE ANALYTICS PLUGIN FOR WOOCOMMERCE
 
 
21
 
22
  The new and enhanced Ecommerce Google Analytics Plugin for WooCommerce is there to help you - Know And Measure What Matters To Your Business.
23
 
24
- As a Premium Google Ads Partner, we are delighted to bring a new and enhanced Google Analytics Plugin that does all the eCommerce tracking in Google Analytics. We have 40000+ active eCommerce businesses across 150 countries using, benefitting, growing from this plugin.
25
 
26
  By opening an e-commerce store, your job is half done. To run it efficiently, drive traffic to your website, and increase conversions, you have to do one more thing. Know Your Shoppers Well!
27
 
@@ -32,9 +34,9 @@ And how will you do that? Well, Start with Understanding, Measuring, and Trackin
32
  * Simplify their shopping process
33
  * Remove all the roadblocks that slow down or come in the way of conversion
34
 
35
- The enhanced eCommerce Google Analytics plugin for woo-commerce will show you all the stats that matter. The plugin is apt in helping global eCommerce businesses scale faster by automating eCommerce tracking in Google Analytics for both the Universal Analytics (Google Analytics v3) and the Google Analytics 4 properties.
36
 
37
- ###DYNAMIC REMARKETING TAGS FOR ECOMMERCE EVENTS - NEW FEATURE OF THE GOOGLE SHOPPING PLUGIN FOR WOOCOMMERCE
38
 
39
  Check the recent release of the Enhanced Ecommerce Google Analytics plugin for WooCommerce, loaded with new features!
40
 
@@ -62,25 +64,25 @@ Create a new Google Ads account using the plugin and get a Google ads coupon upt
62
 
63
  Enhanced eCommerce Google analytics plugin tracks the entire user journey on your eCommerce store from the home page to product views and from cart page to checkout page to thank you page.
64
 
65
- * For any eCommerce business, the most important thing is to know the accurate conversion %. Know the accurate conversion % for your eCommerce store and you have visibility on the entire eCommerce funnel to better channel marketing and UX/UI efforts to reach an optimum conversion %.
66
 
67
- * Using this plugin, you can track your merchandising efforts by monitoring how certain products are performing on the home page or the product listing page and make better and well-informed merchandising decisions.
68
 
69
- * You can track which products have a better view-to-cart ratio or a better view-to-conversion ratio, and based on this data, make better and well-informed pricing or product decisions.
70
 
71
- * Track users who are abandoning the cart, which products are abandoned more in the cart, etc., and reach out to the users or update your product listing.
72
 
73
- * You can track the performance of your checkout form and accordingly work on the UI/UX to increase the conversion rate for your eCommerce business.
74
 
75
  * The best part is, you can track every impression and click of the product from which page they are added to the cart, how users interact with your checkout page before making the final purchase by our new and enhanced eCommerce Google analytics plugin.
76
 
77
  ### GOOGLE ANALYTICS + AUDIENCE REPORTS + BEHAVIOUR REPORTS + ACQUISITION REPORTS
78
 
79
- * Audience reports help know your customers in a whole new way. It gives you much-needed detailed insights like - from which countries your users are coming from, their age, gender, interests, devices, and much more. Considering this, you can easily set up your content and design to match your audience preferences.
80
 
81
- * Behaviour reports help you get to know how users are interacting with your website, how much time they are spending, how much they browse before making a final purchase, and a whole lot more.
82
 
83
- * Acquisition reports tell you which sources are attributing the traffic to your website, their performance when it comes to conversion, and much more. You can channel your efforts in better marketing ROI.
84
 
85
 
86
  ###GOOGLE SHOPPING FOR WOOCOMMERCE
@@ -124,7 +126,7 @@ Enhanced eCommerce Google analytics plugin tracks the entire user journey on you
124
  7. Set your local currency
125
  8. Google Analytics Opt Out
126
  9. IP Anonymization
127
- 10. Dynamic remarketing tags automation for eCommerce events like view_item_list, view_item, add_to_cart and purchase
128
  11. Remarketing tags automation for all pages
129
  12. Create and manage Google Merchant Center Account and auto linking of Google Ads and Google Merchant Center account for smart shopping and shopping campaigns
130
  13. Automatic site verification and domain claim for Google Merchant Center account
@@ -169,17 +171,6 @@ Enhanced eCommerce Google analytics plugin tracks the entire user journey on you
169
  <strong><a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=Reach+out+to+us+with+your+query+Link&utm_campaign=Raise+query+at+Conversios#wpforms-form-11056">Reach out to us with your query here for a faster solution.</a></strong>
170
 
171
 
172
- == Note For Beginners : ==
173
-
174
- == Our plugin does not support Google Analytics tracking for the below features out of the box ==
175
-
176
- * Highly Customized store
177
- * Product types other than Simple Product
178
- * Store with the Subscription product for Orders.
179
- * Ecommerce Pages with Shortcodes
180
- * Not fully compatible with the child/custom Theme
181
- * Reach out to us if you have any of the above requirements and we will be happy to assist.
182
-
183
  == Screenshots ==
184
 
185
  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.
@@ -389,6 +380,11 @@ You can resolve the duplication of data by removing the manually implemented GA
389
 
390
  == Changelog ==
391
 
 
 
 
 
 
392
  = 4.1.0 - 24/08/2021 =
393
 
394
  * Now, users can configure their Google accounts without leaving the WordPress interface. We have made plugin set up flow as seamless as possible.
2
  Contributors: Tatvic, Conversios
3
  Plugin Name: Enhanced Ecommerce for WooCommerce Store
4
  Plugin URI: https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/
5
+ Tags: Google Analytics tracking, Dynamic Remarketing, Google Shopping automation,Google Shopping, Universal Analytics tracking,Google Analytics integration,Google Analytics integration for WooCommerce,Ecommerce tracking, google analytics 4 tracking, google shopping feed, Web Analytics, Web Analytics For WooCommerce, WooCommerce Enhanced Ecommerce, WooCommerce Google Analytics, Google Analytics Plugin, Enhanced Ecommerce Plugin
6
  Author URI: https://www.tatvic.com/
7
  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.1
12
+ Version: 4.1.1
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
16
+ Integrates Google Analytics - eCommerce tracking and automates end-to-end Google Shopping with dynamic remarketing tags.
17
 
18
  == Product Description ==
19
 
20
+ https://youtu.be/s-L6VvY0sVw?rel=0
21
+
22
+ ###GOOGLE ANALYTICS INTEGRATION FOR WOOCOMMERCE
23
 
24
  The new and enhanced Ecommerce Google Analytics Plugin for WooCommerce is there to help you - Know And Measure What Matters To Your Business.
25
 
26
+ As a Premium Google Ads Partner, we are delighted to bring a new and enhanced Google Analytics Integration Plugin that does all the eCommerce tracking in Google Analytics. We have 40000+ active eCommerce businesses across 150 countries using, benefitting, growing from this plugin.
27
 
28
  By opening an e-commerce store, your job is half done. To run it efficiently, drive traffic to your website, and increase conversions, you have to do one more thing. Know Your Shoppers Well!
29
 
34
  * Simplify their shopping process
35
  * Remove all the roadblocks that slow down or come in the way of conversion
36
 
37
+ The enhanced eCommerce Google Analytics plugin for WooCommerce will show you all the stats that matter. The plugin is apt in helping global eCommerce businesses scale faster by integrating eCommerce tracking in Google Analytics for both the Universal Analytics (Google Analytics v3) and the Google Analytics 4 properties.
38
 
39
+ ###AUTOMATE DYNAMIC REMARKETING TAGS FOR ECOMMERCE EVENTS - NEW FEATURE OF THE GOOGLE SHOPPING PLUGIN FOR WOOCOMMERCE
40
 
41
  Check the recent release of the Enhanced Ecommerce Google Analytics plugin for WooCommerce, loaded with new features!
42
 
64
 
65
  Enhanced eCommerce Google analytics plugin tracks the entire user journey on your eCommerce store from the home page to product views and from cart page to checkout page to thank you page.
66
 
67
+ * For any eCommerce business, the most important thing is to know the accurate conversion %. Know the accurate conversion % for your eCommerce store and you have visibility on the entire eCommerce funnel to better channel marketing and UX/UI efforts to reach an optimum conversion %.<a target="_blank" href="http://prntscr.com/1qv1ktl"> See Sample Report.</a>
68
 
69
+ * Using this plugin, you can track your merchandising efforts by monitoring how certain products are performing on the home page or the product listing page and make better and well-informed merchandising decisions. <a target="_blank" href="http://prntscr.com/1qv1r1d"> See Sample Report.</a>
70
 
71
+ * You can track which products have a better view-to-cart ratio or a better view-to-conversion ratio, and based on this data, make better and well-informed pricing or product decisions. <a target="_blank" href="http://prntscr.com/1qv1r1d"> See Sample Report.</a>
72
 
73
+ * Track users who are abandoning the cart, which products are abandoned more in the cart, etc., and reach out to the users or update your product listing. <a target="_blank" href="http://prntscr.com/1qv1r1d"> See Sample Report.</a>
74
 
75
+ * You can track the performance of your checkout form and accordingly work on the UI/UX to increase the conversion rate for your eCommerce business. <a target="_blank" href="http://prntscr.com/1qv1vsp"> See Sample Report.</a>
76
 
77
  * The best part is, you can track every impression and click of the product from which page they are added to the cart, how users interact with your checkout page before making the final purchase by our new and enhanced eCommerce Google analytics plugin.
78
 
79
  ### GOOGLE ANALYTICS + AUDIENCE REPORTS + BEHAVIOUR REPORTS + ACQUISITION REPORTS
80
 
81
+ * Audience reports help know your customers in a whole new way. It gives you much-needed detailed insights like - from which countries your users are coming from, their age, gender, interests, devices, and much more. Considering this, you can easily set up your content and design to match your audience preferences. <a target="_blank" href="http://prntscr.com/1qv1zsu"> See Sample Report.</a>
82
 
83
+ * Behaviour reports help you get to know how users are interacting with your website, how much time they are spending, how much they browse before making a final purchase, and a whole lot more. <a target="_blank" href="http://prntscr.com/1qv226n"> See Sample Report.</a>
84
 
85
+ * Acquisition reports tell you which sources are attributing the traffic to your website, their performance when it comes to conversion, and much more. You can channel your efforts in better marketing ROI.<a target="_blank" href="http://prntscr.com/1qv23ws"> See Sample Report.</a>
86
 
87
 
88
  ###GOOGLE SHOPPING FOR WOOCOMMERCE
126
  7. Set your local currency
127
  8. Google Analytics Opt Out
128
  9. IP Anonymization
129
+ 10. Dynamic remarketing tags integration and automation for eCommerce events like view_item_list, view_item, add_to_cart and purchase
130
  11. Remarketing tags automation for all pages
131
  12. Create and manage Google Merchant Center Account and auto linking of Google Ads and Google Merchant Center account for smart shopping and shopping campaigns
132
  13. Automatic site verification and domain claim for Google Merchant Center account
171
  <strong><a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=Reach+out+to+us+with+your+query+Link&utm_campaign=Raise+query+at+Conversios#wpforms-form-11056">Reach out to us with your query here for a faster solution.</a></strong>
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.
380
 
381
  == Changelog ==
382
 
383
+ = 4.1.1 - 24/08/2021 =
384
+
385
+ * Fixed the issue for fetching Google ads account for some store
386
+ * Fixed WordPress backend stying bug
387
+
388
  = 4.1.0 - 24/08/2021 =
389
 
390
  * Now, users can configure their Google accounts without leaving the WordPress interface. We have made plugin set up flow as seamless as possible.