Version Description
- 18/11/2022 =
- In this release, we have modified the item data parameters for remarketing and Dynamic Remarketing events, to adapt the new changes at Google Ads guidelines. This upgrade will facilitate the adoption of the new Google Ads standards and improvements for remarketing.
Download this release
Release Info
Developer | ramniktatvic |
Plugin | Enhanced Ecommerce Google Analytics Plugin for WooCommerce |
Version | 5.0.6 |
Comparing to | |
See all releases |
Code changes from version 5.0.5 to 5.0.6
admin/class-tvc-admin-helper.php
CHANGED
@@ -210,18 +210,21 @@ Class TVC_Admin_Helper{
|
|
210 |
$syncProductStat = array("total" =>0, "approved" => 0, "disapproved" => 0, "pending" => 0 );
|
211 |
if( $merchantId != ""){
|
212 |
$api_rs = $this->import_gmc_products_sync_in_db($next_page_token);
|
213 |
-
|
214 |
-
$product_status = $this->TVC_Admin_DB_Helper->tvc_get_counts_groupby('ee_products_sync_list','google_status');
|
215 |
-
|
216 |
-
|
217 |
-
|
|
|
|
|
218 |
}
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
225 |
return array( "error"=>false, "api_rs"=>$api_rs, "message"=>esc_html__("Details updated successfully.","enhanced-e-commerce-for-woocommerce-store") );
|
226 |
}
|
227 |
}
|
210 |
$syncProductStat = array("total" =>0, "approved" => 0, "disapproved" => 0, "pending" => 0 );
|
211 |
if( $merchantId != ""){
|
212 |
$api_rs = $this->import_gmc_products_sync_in_db($next_page_token);
|
213 |
+
//if(isset($api_rs["next_page_token"]) && $api_rs["next_page_token"] == "" ){
|
214 |
+
$product_status = $this->TVC_Admin_DB_Helper->tvc_get_counts_groupby('ee_products_sync_list','google_status');
|
215 |
+
if(!empty($product_status)){
|
216 |
+
foreach ($product_status as $key => $value) {
|
217 |
+
if(isset($value['google_status']) ){
|
218 |
+
$syncProductStat[$value['google_status']] = (isset($value['count']) && $value['count'] >0)?$value['count']:0;
|
219 |
+
}
|
220 |
}
|
221 |
+
$syncProductStat["total"] = $this->TVC_Admin_DB_Helper->tvc_row_count('ee_products_sync_list');
|
222 |
+
$google_detail = $this->get_ee_options_data();
|
223 |
+
$google_detail["prod_sync_status"] = (object) $syncProductStat;
|
224 |
+
$this->set_ee_options_data($google_detail);
|
225 |
+
}
|
226 |
+
|
227 |
+
//}
|
228 |
return array( "error"=>false, "api_rs"=>$api_rs, "message"=>esc_html__("Details updated successfully.","enhanced-e-commerce-for-woocommerce-store") );
|
229 |
}
|
230 |
}
|
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.
|
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.
|
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.6
|
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.6' );
|
41 |
$fullName = plugin_basename( __FILE__ );
|
42 |
$dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
|
43 |
if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
|
includes/setup/google-shopping-feed-sync-product.php
CHANGED
@@ -304,10 +304,10 @@ jQuery(document).ready(function() {
|
|
304 |
"lengthMenu": [ 10, 20, 50, 100, 200 ]
|
305 |
});
|
306 |
//auto syncup call
|
307 |
-
var is_need_to_update = "<?php echo esc_attr($is_need_to_update); ?>";
|
308 |
if(is_need_to_update == 1 || is_need_to_update == true){
|
309 |
call_tvc_api_sync_up();
|
310 |
-
}
|
311 |
});
|
312 |
//Update syncup detail by ajax call
|
313 |
function call_tvc_api_sync_up(){
|
@@ -325,7 +325,7 @@ function ImportGMCProduct(next_page_token = null){
|
|
325 |
},function( response ){
|
326 |
var rsp = JSON.parse(response);
|
327 |
//console.log(rsp);
|
328 |
-
if(rsp.error == false && rsp.api_rs.next_page_token != "" ){
|
329 |
total_import = total_import+rsp.api_rs.sync_product;
|
330 |
if(rsp.api_rs.next_page_token != null){
|
331 |
jQuery("#products_count").html("- "+total_import);
|
304 |
"lengthMenu": [ 10, 20, 50, 100, 200 ]
|
305 |
});
|
306 |
//auto syncup call
|
307 |
+
/*var is_need_to_update = "<?php echo esc_attr($is_need_to_update); ?>";
|
308 |
if(is_need_to_update == 1 || is_need_to_update == true){
|
309 |
call_tvc_api_sync_up();
|
310 |
+
}*/
|
311 |
});
|
312 |
//Update syncup detail by ajax call
|
313 |
function call_tvc_api_sync_up(){
|
325 |
},function( response ){
|
326 |
var rsp = JSON.parse(response);
|
327 |
//console.log(rsp);
|
328 |
+
if(rsp.error == false && rsp.api_rs != null && rsp.api_rs.next_page_token != "" ){
|
329 |
total_import = total_import+rsp.api_rs.sync_product;
|
330 |
if(rsp.api_rs.next_page_token != null){
|
331 |
jQuery("#products_count").html("- "+total_import);
|
public/class-enhanced-ecommerce-google-analytics-public.php
CHANGED
@@ -555,7 +555,7 @@ src="https://www.facebook.com/tr?id=<?php echo esc_js($this->fb_pixel_id); ?>&ev
|
|
555 |
for(var t_item in tvc_oc){
|
556 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
557 |
ads_items.push({
|
558 |
-
|
559 |
google_business_vertical: "retail"
|
560 |
});
|
561 |
}
|
@@ -609,7 +609,7 @@ src="https://www.facebook.com/tr?id=<?php echo esc_js($this->fb_pixel_id); ?>&ev
|
|
609 |
for(var t_item in tvc_oc){
|
610 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
611 |
ads_items.push({
|
612 |
-
|
613 |
google_business_vertical: "retail"
|
614 |
});
|
615 |
}
|
555 |
for(var t_item in tvc_oc){
|
556 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
557 |
ads_items.push({
|
558 |
+
id: tvc_oc[t_item].tvc_id,
|
559 |
google_business_vertical: "retail"
|
560 |
});
|
561 |
}
|
609 |
for(var t_item in tvc_oc){
|
610 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
611 |
ads_items.push({
|
612 |
+
id: tvc_oc[t_item].tvc_id,
|
613 |
google_business_vertical: "retail"
|
614 |
});
|
615 |
}
|
public/js/tvc-ee-google-analytics.js
CHANGED
@@ -459,7 +459,7 @@ class TVC_Enhanced {
|
|
459 |
for(var t_item in tvc_oc){
|
460 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
461 |
ads_items.push({
|
462 |
-
|
463 |
google_business_vertical: "retail"
|
464 |
});
|
465 |
num_items+=parseInt(tvc_oc[t_item].tvc_q);
|
459 |
for(var t_item in tvc_oc){
|
460 |
ads_value=ads_value + parseFloat(tvc_oc[t_item].tvc_p);
|
461 |
ads_items.push({
|
462 |
+
id: tvc_oc[t_item].tvc_i,
|
463 |
google_business_vertical: "retail"
|
464 |
});
|
465 |
num_items+=parseInt(tvc_oc[t_item].tvc_q);
|
readme.txt
CHANGED
@@ -2,18 +2,18 @@
|
|
2 |
Contributors: Tatvic, Conversios
|
3 |
Plugin Name: All-in-one Google Analytics, Pixels and Product Feed Manager for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/
|
5 |
-
Tags: google analytics, google analytics 4, google tag manager, gtm for woocommerce, gtm,
|
6 |
Author URI: https://conversios.io/
|
7 |
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.
|
12 |
-
Version: 5.0.
|
13 |
License: GPLv3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
|
16 |
-
Track
|
17 |
|
18 |
== Product Description ==
|
19 |
|
@@ -25,7 +25,7 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
25 |
1. Google Tag Manager based implementation for faster page load
|
26 |
2. Use your own Google Tag Manager account with the plugin for full control over all the tags (64 tags), triggers and variables <strong>(<a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=PRO+Link&m_campaign=Upsell+at+Conversios+Plugin">Pro</a>)</strong>
|
27 |
3. Optional gtag.js based implementation (If you do not want to use Google Tag Manager based implementation)
|
28 |
-
4. One click <strong>Google Analytics
|
29 |
* All page tracking (Home page, Product listing page, Product detail page, Cart, Checkout, Order Confirmation page etc.)
|
30 |
* All important ecommerce events like:
|
31 |
* Product listing tracking (view_item_list event)
|
@@ -36,7 +36,7 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
36 |
* Checkout steps tracking (begin_checkout, checkout_step2,checkout_step3,checkout_step4 events)
|
37 |
* Conversion/order confirmation tracking (Purchase event)
|
38 |
5. Insightful Google Analytics reporting dashboard inside your wordpress admin panel
|
39 |
-
6. One click <strong>Google Analytics 4
|
40 |
* All page tracking (Home page, Product listing page, Product detail page, Cart, Checkout, Order Confirmation page etc.)
|
41 |
* All important ecommerce events like:
|
42 |
* Product listing tracking (view_item_list event)
|
@@ -47,15 +47,15 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
47 |
* Checkout steps tracking (begin_checkout, add_shipping_info, add_payment_info events)
|
48 |
* Conversion/order confirmation tracking (Purchase event)
|
49 |
7. Insightful Google Analytics 4 reporting dashboard inside your wordpress admin panel
|
50 |
-
8. Google Ads Remarketing, Dynamic Remarketing and Conversion
|
51 |
-
* Google
|
52 |
* Product clicks
|
53 |
* Product views
|
54 |
* Add to carts
|
55 |
* Checkout
|
56 |
* Purchase
|
57 |
-
* Google Ads
|
58 |
-
* Google Ads enhanced
|
59 |
9. <strong>Meta pixel (Facebook + Instagram) integration</strong> for ecommerce events like:
|
60 |
* Product view
|
61 |
* Add to carts
|
@@ -90,10 +90,10 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
90 |
15. <strong>Facebook Conversion API integration (Upcoming)</strong>
|
91 |
16. <strong>Server side tagging (Upcoming)</strong>
|
92 |
17. 100% automation of running product ads on Google
|
93 |
-
* Google
|
94 |
* Site verification
|
95 |
* Domain claim
|
96 |
-
* Link Google
|
97 |
* Performance max campaign management for higher ROAS
|
98 |
18. Product feed manager for Google Merchant Center
|
99 |
* Sync unlimited products from your WooCommerce shop to Google Merchant Center using powerful and real time content API
|
@@ -107,7 +107,7 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
107 |
24. Schedule email reporting <strong>(Upcoming)</strong>
|
108 |
|
109 |
###USER MANUAL
|
110 |
-
<a target="_blank" href="https://conversios.io/help-center/Installation-Manual.pdf">Here is how you can configure the plugin without any hassle and start scaling your
|
111 |
|
112 |
###Conversios is compatible with following major plugins
|
113 |
|
@@ -119,37 +119,37 @@ This is an all-in-one marketing plugin for WooCommerce stores. Over the last 6 y
|
|
119 |
- CURCY: Multi Currency for WooCommerce
|
120 |
- WBW Currency Switcher for WooCommerce
|
121 |
|
122 |
-
<strong><a target="_blank" href="https://conversios.io/pricings/?utm_source=EE+Plugin+Wordpress+Listing&utm_medium=Below+Free+Features&utm_campaign=Upsell+at+Conversios"> Fast track and scale your
|
123 |
|
124 |
<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>
|
125 |
|
126 |
|
127 |
== Screenshots ==
|
128 |
-
1. This is the main onboarding page of the plugin where you can connect the Google Analytics, Google Ads, Google Merchant
|
129 |
2. This is the main settings page of the plugin from where you can connect your tracking method, use your own GTM ID, integrate your Pxel IDs, change your Event Tracking based on your custom integration, Google Ads and Google Analytics accounts.
|
130 |
-
3. Actionable dashboard which displays the key metrics that help your
|
131 |
-
4. 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
|
132 |
-
5. Universal Analytics-->Conversion-->
|
133 |
-
6. Universal Analytics-->Conversion-->
|
134 |
-
7. Universal Analytics-->Conversion-->
|
135 |
-
8. Universal Analytics-->Conversion-->
|
136 |
-
9. Universal Analytics-->Conversion-->
|
137 |
-
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
|
138 |
-
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
|
139 |
-
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
|
140 |
-
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
|
141 |
-
14. Google Analytics 4 Monetization -->
|
142 |
-
15. Product sync dashboard when no products are synced to your Google Merchant
|
143 |
-
16. Map your WooCommerce product categories with Google Merchant
|
144 |
-
17. Map your WooCommerce product attributes with Google Merchant
|
145 |
18. Product sync dashboard when the products are synced in your merchant center account.
|
146 |
19. This is the Performance Max Campaign page where you can create new campaign and also view your existing active/paused Pmax campaigns.
|
147 |
|
148 |
== Frequently Asked Questions ==
|
149 |
|
150 |
-
= What is
|
151 |
|
152 |
-
Google Shopping helps sellers make their shops and products available for millions of users across Google.Google Shopping is a new product discovery experience. The goal is to make it easy for users to research purchases, find information about different products, their features and prices, and then connect with sellers to make their purchase. Google Shopping enables users to view product information from the sellers that is updated on a regular basis by sellers. Online retailers submit feeds containing product information to Google Shopping. Since this product information comes directly from the seller, this means we’re able to show the current prices, latest offers and current product availability. Hence, Google Shopping helps
|
153 |
|
154 |
= How do sellers enroll for Google Shopping? =
|
155 |
|
@@ -158,9 +158,9 @@ Upload your products: Prepare your product info to submit through a feed, or aut
|
|
158 |
Show your products across Google: 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.
|
159 |
Our plugin helps WooCommerce shop owners in automating everything that is required to get eligible for Google Shopping. You do not need to get into any technicalities, the plugin will take care of all in most of the cases.
|
160 |
|
161 |
-
= What is
|
162 |
|
163 |
-
Google Merchant Center helps millions of people discover, explore, and buy your products. With its family of features and deep reporting tools, it brings you different ways to get the right products to the right customers. In simpler words, in order to start using Google Shopping benefits you need to create a Google Merchant
|
164 |
|
165 |
= How can I unclaim the domain in my Google Merchant Center and reclaim it via the plugin? =
|
166 |
|
@@ -180,12 +180,12 @@ After following the above steps, you will lose the claim for your previously ver
|
|
180 |
-> Go to Conversios Plugin -> Google Shopping.
|
181 |
-> Click on the domain claim link or refresh button to claim the domain. Here is the <a href="https://prnt.sc/1ibhalt">screenshot link</a> which highlights the link and button.
|
182 |
|
183 |
-
After following the above steps, the plugin will automatically claim and verify the website domain in your connected Google
|
184 |
|
185 |
|
186 |
= What is Google Analytics 4? =
|
187 |
|
188 |
-
Google
|
189 |
|
190 |
|
191 |
= Does this plugin match with GDPR compliance? =
|
@@ -211,6 +211,9 @@ There could be duplicate tracking via manually implemented GA tracking snippet a
|
|
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 |
|
@@ -242,8 +245,8 @@ Use your own Google Tag Manager account with the conversios plugin.
|
|
242 |
5. If you want us to add any other pixel in the plugin, shout out and that will be done in 3 business days.
|
243 |
|
244 |
= 4.9.4 - 06/10/2022 =
|
245 |
-
* Enhancement: Latest optimization will create smooth on-boarding for new and returning users, decreasing the page load time for configuration of Google analytics, Google
|
246 |
-
* We also changed our Conversios GA and Google
|
247 |
|
248 |
= 4.9.3 - 27/09/2022 =
|
249 |
* Changed the text domain for internationalization and making it compatible with other locales.
|
@@ -261,7 +264,7 @@ Use your own Google Tag Manager account with the conversios plugin.
|
|
261 |
Bug to "remove from cart" has been resolved when user updates product quantity in your woo-commerce store. We have also made some UI changes for easy transition and customer help.
|
262 |
|
263 |
= 4.8.8 - 22/08/2022 =
|
264 |
-
For ease of onboarding and better user understanding, we have enhanced our UI and content. Also we have fixed some minor issues wrt to the enhanced
|
265 |
= 4.8.7 - 09/08/2022 =
|
266 |
* Long awaited product sync feature is out for our Pro users. Now you can manage your product sync duration and product batch size on your own at your convenience.
|
267 |
|
@@ -269,14 +272,14 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
269 |
* Fix: Minor bugs fixes.
|
270 |
|
271 |
= 4.8.5 - 03/08/2022 =
|
272 |
-
* Performance optimization and improvements for Google
|
273 |
* Network site compatibility enabled.
|
274 |
|
275 |
= 4.8.4 - 21/07/2022 =
|
276 |
-
* Fix: Code optimization in terms of Google
|
277 |
|
278 |
= 4.8.3 - 18/07/2022 =
|
279 |
-
* New Feature (PRO) - Improve accuracy of ads Conversion
|
280 |
|
281 |
= 4.8.2 - 12/07/2022 =
|
282 |
* NEW: (PRO) You can also track your order refund in Google Analytics GA4 and GA3.
|
@@ -306,7 +309,7 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
306 |
* New: (PRO) Product sync feature now compatible with various Brand plugins like Perfect Brands for WooCommerce, YITH WooCommerce Brands️ and WooCommerce Brands.
|
307 |
|
308 |
= 4.7.0 - 05/04/2022 =
|
309 |
-
* New: Facebook Pixel
|
310 |
* New: Compatible with Multi Currency plugins like "WOOCS", "CURCY – Multi-Currency for WooCommerce" and "WBW Currency Switcher for WooCommerce"
|
311 |
|
312 |
= 4.6.9 - 21/03/2022 =
|
@@ -316,12 +319,12 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
316 |
* New: In this release, we have add GA4 dashboard with important e-commerce reports.
|
317 |
|
318 |
= 4.6.7 - 11/03/2022 =
|
319 |
-
* Fix: - Fixed the Google
|
320 |
|
321 |
= 4.6.6 - 03/03/2022 =
|
322 |
-
* New: In this release, we have
|
323 |
-
* Tweak: Now, the admin user will be able to change the thank you page
|
324 |
-
* Tweak: Plugin will no longer be supported for the
|
325 |
|
326 |
= 4.6.5 - 16/02/2022 =
|
327 |
* Fix - Fixed :- Onboarding loading issue for some users.
|
@@ -395,7 +398,7 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
395 |
|
396 |
= 4.4.1 - 15/11/2021 =
|
397 |
|
398 |
-
* Earlier, agency owners having multiple Google
|
399 |
|
400 |
= 4.4.0 - 01/11/2021 =
|
401 |
|
@@ -426,7 +429,7 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
426 |
|
427 |
= 4.3.0 - 29/09/2021 =
|
428 |
|
429 |
-
* We have added Campaign performance data in the dashboard. This will allow you to have visibility on your Google
|
430 |
|
431 |
* Enhanced Google authentication flow in order to manage expiry of tokens.
|
432 |
|
@@ -466,7 +469,7 @@ Bug to "remove from cart" has been resolved when user updates product quantity i
|
|
466 |
|
467 |
= 4.1.1 - 24/08/2021 =
|
468 |
|
469 |
-
* Fixed the issue for fetching Google
|
470 |
* Fixed WordPress backend stying bug
|
471 |
|
472 |
= 4.1.0 - 24/08/2021 =
|
@@ -492,9 +495,9 @@ Do take a look and share your feedback & suggestions with us!
|
|
492 |
|
493 |
* Major enhancements and improvements for product feed sync feature. Now, you will be able to sync unlimited products seamlessly.
|
494 |
|
495 |
-
* Google
|
496 |
|
497 |
-
* Dynamic
|
498 |
|
499 |
* Added advanced trackings for more enhanced data that can be used to better understand user journey and will help you in better retarget and improve the conversion %. (Pro)
|
500 |
|
@@ -539,7 +542,7 @@ Do take a look and share your feedback & suggestions with us!
|
|
539 |
|
540 |
= 3.0.2 - 17/03/2021 =
|
541 |
* Product sync feature enhancement - Users can now map upto 25 product attributes which will help them opt for enhanced listing in Google search/Shopping
|
542 |
-
* Auto check on the attributes like id, product title, product description, product link, image link, offer id, price, target country, content language,
|
543 |
* Variable products are fully supported for 4 attributes - color, size, gender, age group.
|
544 |
* Auto fetch of variable products data while syncing products into merchant center account
|
545 |
* In case the domain claim fails, user can now manually claim website from plugin's interface by visiting Google Shopping tab
|
@@ -551,16 +554,16 @@ Do take a look and share your feedback & suggestions with us!
|
|
551 |
* Site speed issue got resolved.
|
552 |
|
553 |
= 3.0 - 08/03/2021 =
|
554 |
-
* We have been working on this release for the last few months and we are happy to announce the release of highly demanded features by you. The major features include stand alone GA 4 tracking, automation of
|
555 |
-
* With this release users will be able to do stand alone Google Analytics 4 tracking for
|
556 |
-
*
|
557 |
-
* Users can now enable
|
558 |
-
* User can opt for
|
559 |
-
* We are introducing complete
|
560 |
-
* The
|
561 |
* Automatically verifies site and claims domain for Merchant center approval
|
562 |
* Seamless product sync from WooCommerce store to Google Merchant Center and Opt your product data into programmes, like surfaces across Google (Free listing for Shopping tab under Google Search), Shopping ads, local inventory ads and Shopping Actions, to highlight your products to shoppers across Google.
|
563 |
-
* Create a new
|
564 |
* Compatibility with WooCommerce 5.0.0
|
565 |
|
566 |
|
@@ -570,9 +573,9 @@ Do take a look and share your feedback & suggestions with us!
|
|
570 |
* PHP warnings issue was raised in 2.3.6 by some users that is now resolved in 2.3.6.1.
|
571 |
|
572 |
= 2.3.6 - 22/10/2020 =
|
573 |
-
* No need to manually paste Google Analytics property to start tracking. We have given
|
574 |
-
* Fine tuning for Google Analytics 4 dual set up/ data collection in
|
575 |
-
* New feature - Now you can link your
|
576 |
* Compatibility with WooCommerce 4.6.1
|
577 |
* Compatibility with Wordpress 5.5.1
|
578 |
|
2 |
Contributors: Tatvic, Conversios
|
3 |
Plugin Name: All-in-one Google Analytics, Pixels and Product Feed Manager for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/
|
5 |
+
Tags: google analytics, google analytics 4, facebook pixel, google tag manager, gtm for woocommerce, gtm, fb pixel, meta pixel, google ads pixel, google ads conversion tracking, google ads dynamic remarketing tags, google analytics for woocommerce, google analytics ecommerce tracking, google analytics tracking, google tag manager for woocommerce, google tag manager datalayer, fb pixel for woocommerce, snapchat pixel, tiktok pixel, pinterest pixel, microsoft ads pixel, twitter pixel, google shopping automation, google shopping, google analytics integration, google analytics integration for woocommerce, ecommerce tracking, google shopping feed, google analytics plugin, product feed, google analytics reporting, google analytics dashboard, ecommerce datalayer, wordpress dashboard
|
6 |
Author URI: https://conversios.io/
|
7 |
Author: Conversios
|
8 |
Requires at least: 4.6
|
9 |
+
Tested up to: 6.1.1
|
10 |
Requires PHP: 5.6 or Higher
|
11 |
+
Stable tag: 5.0.6
|
12 |
+
Version: 5.0.6
|
13 |
License: GPLv3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
|
16 |
+
Track ecommerce events and conversions in Google Analytics 4, 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).
|
17 |
|
18 |
== Product Description ==
|
19 |
|
25 |
1. Google Tag Manager based implementation for faster page load
|
26 |
2. Use your own Google Tag Manager account with the plugin for full control over all the tags (64 tags), triggers and variables <strong>(<a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=PRO+Link&m_campaign=Upsell+at+Conversios+Plugin">Pro</a>)</strong>
|
27 |
3. Optional gtag.js based implementation (If you do not want to use Google Tag Manager based implementation)
|
28 |
+
4. One click <strong>Google Analytics ecommerce tracking</strong> automation. It tracks following events:
|
29 |
* All page tracking (Home page, Product listing page, Product detail page, Cart, Checkout, Order Confirmation page etc.)
|
30 |
* All important ecommerce events like:
|
31 |
* Product listing tracking (view_item_list event)
|
36 |
* Checkout steps tracking (begin_checkout, checkout_step2,checkout_step3,checkout_step4 events)
|
37 |
* Conversion/order confirmation tracking (Purchase event)
|
38 |
5. Insightful Google Analytics reporting dashboard inside your wordpress admin panel
|
39 |
+
6. One click <strong>Google Analytics 4 ecommerce tracking</strong> automation. It tracks following events:
|
40 |
* All page tracking (Home page, Product listing page, Product detail page, Cart, Checkout, Order Confirmation page etc.)
|
41 |
* All important ecommerce events like:
|
42 |
* Product listing tracking (view_item_list event)
|
47 |
* Checkout steps tracking (begin_checkout, add_shipping_info, add_payment_info events)
|
48 |
* Conversion/order confirmation tracking (Purchase event)
|
49 |
7. Insightful Google Analytics 4 reporting dashboard inside your wordpress admin panel
|
50 |
+
8. Google Ads Remarketing, Dynamic Remarketing and Conversion Tracking
|
51 |
+
* Google Ads Dynamic Remarketing tags for ecommerce events
|
52 |
* Product clicks
|
53 |
* Product views
|
54 |
* Add to carts
|
55 |
* Checkout
|
56 |
* Purchase
|
57 |
+
* Google Ads Conversion Tracking <strong>(<a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=PRO+Link&m_campaign=Upsell+at+Conversios+Plugin">Pro</a>)</strong>
|
58 |
+
* Google Ads enhanced Conversion Tracking <strong>(<a target="_blank" href="https://conversios.io/?utm_source=EE+Plugin+WordPress+Listing&utm_medium=PRO+Link&m_campaign=Upsell+at+Conversios+Plugin">Pro</a>)</strong>
|
59 |
9. <strong>Meta pixel (Facebook + Instagram) integration</strong> for ecommerce events like:
|
60 |
* Product view
|
61 |
* Add to carts
|
90 |
15. <strong>Facebook Conversion API integration (Upcoming)</strong>
|
91 |
16. <strong>Server side tagging (Upcoming)</strong>
|
92 |
17. 100% automation of running product ads on Google
|
93 |
+
* Google Merchant Center account management
|
94 |
* Site verification
|
95 |
* Domain claim
|
96 |
+
* Link Google Merchant Center with Google Ads account
|
97 |
* Performance max campaign management for higher ROAS
|
98 |
18. Product feed manager for Google Merchant Center
|
99 |
* Sync unlimited products from your WooCommerce shop to Google Merchant Center using powerful and real time content API
|
107 |
24. Schedule email reporting <strong>(Upcoming)</strong>
|
108 |
|
109 |
###USER MANUAL
|
110 |
+
<a target="_blank" href="https://conversios.io/help-center/Installation-Manual.pdf">Here is how you can configure the plugin without any hassle and start scaling your ecommerce business faster.</a>
|
111 |
|
112 |
###Conversios is compatible with following major plugins
|
113 |
|
119 |
- CURCY: Multi Currency for WooCommerce
|
120 |
- WBW Currency Switcher for WooCommerce
|
121 |
|
122 |
+
<strong><a target="_blank" href="https://conversios.io/pricings/?utm_source=EE+Plugin+Wordpress+Listing&utm_medium=Below+Free+Features&utm_campaign=Upsell+at+Conversios"> Fast track and scale your ecommerce business to new heights by unlocking more advanced tracking and enabling complete Google shopping solutions for your WooCommerce store. Give a try to our pro version.</a></strong>
|
123 |
|
124 |
<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>
|
125 |
|
126 |
|
127 |
== Screenshots ==
|
128 |
+
1. This is the main onboarding page of the plugin where you can connect the Google Analytics, Google Ads, Google Merchant Center accounts. Also, on this page, you can create new Google Ads and Google Merchant Center accounts if they are not yet created for your business.
|
129 |
2. This is the main settings page of the plugin from where you can connect your tracking method, use your own GTM ID, integrate your Pxel IDs, change your Event Tracking based on your custom integration, Google Ads and Google Analytics accounts.
|
130 |
+
3. Actionable dashboard which displays the key metrics that help your ecommerce business scale faster. ecommerce conversion and checkout funnel reports that help you to visualize user journeys from the Home page to order confirmation. Product, Source/Medium and Campaign Performance Report where you can see all the respective performances.
|
131 |
+
4. 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.
|
132 |
+
5. Universal Analytics-->Conversion-->ecommerce-->Overview Your Google Analytics account will start reflecting data as shown in the screenshot.
|
133 |
+
6. Universal Analytics-->Conversion-->ecommerce-->Shopping Behavior Your Google Analytics account will start reflecting data as shown in the screenshot.
|
134 |
+
7. 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.
|
135 |
+
8. 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.
|
136 |
+
9. 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.
|
137 |
+
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.
|
138 |
+
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.
|
139 |
+
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.
|
140 |
+
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.
|
141 |
+
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.
|
142 |
+
15. Product sync dashboard when no products are synced to your Google Merchant Center account.
|
143 |
+
16. Map your WooCommerce product categories with Google Merchant Center categories
|
144 |
+
17. Map your WooCommerce product attributes with Google Merchant Center product attributes to sync/add/update products in your Merchant Center account from WordPress backend.
|
145 |
18. Product sync dashboard when the products are synced in your merchant center account.
|
146 |
19. This is the Performance Max Campaign page where you can create new campaign and also view your existing active/paused Pmax campaigns.
|
147 |
|
148 |
== Frequently Asked Questions ==
|
149 |
|
150 |
+
= What is Google Shopping and how does it work? =
|
151 |
|
152 |
+
Google Shopping helps sellers make their shops and products available for millions of users across Google.Google Shopping is a new product discovery experience. The goal is to make it easy for users to research purchases, find information about different products, their features and prices, and then connect with sellers to make their purchase. Google Shopping enables users to view product information from the sellers that is updated on a regular basis by sellers. Online retailers submit feeds containing product information to Google Shopping. Since this product information comes directly from the seller, this means we’re able to show the current prices, latest offers and current product availability. Hence, Google Shopping helps ecommerce businesses find more customers to their websites.
|
153 |
|
154 |
= How do sellers enroll for Google Shopping? =
|
155 |
|
158 |
Show your products across Google: 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.
|
159 |
Our plugin helps WooCommerce shop owners in automating everything that is required to get eligible for Google Shopping. You do not need to get into any technicalities, the plugin will take care of all in most of the cases.
|
160 |
|
161 |
+
= What is Google Merchant Center? =
|
162 |
|
163 |
+
Google Merchant Center helps millions of people discover, explore, and buy your products. With its family of features and deep reporting tools, it brings you different ways to get the right products to the right customers. In simpler words, in order to start using Google Shopping benefits you need to create a Google Merchant Center account and fill your basic business information before you start uploading your product data for Google Shopping.
|
164 |
|
165 |
= How can I unclaim the domain in my Google Merchant Center and reclaim it via the plugin? =
|
166 |
|
180 |
-> Go to Conversios Plugin -> Google Shopping.
|
181 |
-> Click on the domain claim link or refresh button to claim the domain. Here is the <a href="https://prnt.sc/1ibhalt">screenshot link</a> which highlights the link and button.
|
182 |
|
183 |
+
After following the above steps, the plugin will automatically claim and verify the website domain in your connected Google Merchant Center account.
|
184 |
|
185 |
|
186 |
= What is Google Analytics 4? =
|
187 |
|
188 |
+
Google Analytics 4 is a completely new avatar of Google Analytics that uses event driven data model designed to capture data from your webstore and mobile applications. The reports generated in Google Analytics 4 are based on new data model introduced.
|
189 |
|
190 |
|
191 |
= Does this plugin match with GDPR compliance? =
|
211 |
|
212 |
|
213 |
== Changelog ==
|
214 |
+
= 5.0.6 - 18/11/2022 =
|
215 |
+
* In this release, we have modified the item data parameters for remarketing and Dynamic Remarketing events, to adapt the new changes at Google Ads guidelines. This upgrade will facilitate the adoption of the new Google Ads standards and improvements for remarketing.
|
216 |
+
|
217 |
= 5.0.5 - 15/11/2022 =
|
218 |
* In this release, we have resolved Average order value UI issue in dashboard.
|
219 |
|
245 |
5. If you want us to add any other pixel in the plugin, shout out and that will be done in 3 business days.
|
246 |
|
247 |
= 4.9.4 - 06/10/2022 =
|
248 |
+
* Enhancement: Latest optimization will create smooth on-boarding for new and returning users, decreasing the page load time for configuration of Google analytics, Google Ads and GMC accounts.
|
249 |
+
* We also changed our Conversios GA and Google Shopping Plugin Menu structure for better flow and easy naming convention.
|
250 |
|
251 |
= 4.9.3 - 27/09/2022 =
|
252 |
* Changed the text domain for internationalization and making it compatible with other locales.
|
264 |
Bug to "remove from cart" has been resolved when user updates product quantity in your woo-commerce store. We have also made some UI changes for easy transition and customer help.
|
265 |
|
266 |
= 4.8.8 - 22/08/2022 =
|
267 |
+
For ease of onboarding and better user understanding, we have enhanced our UI and content. Also we have fixed some minor issues wrt to the enhanced Conversion Tracking.
|
268 |
= 4.8.7 - 09/08/2022 =
|
269 |
* Long awaited product sync feature is out for our Pro users. Now you can manage your product sync duration and product batch size on your own at your convenience.
|
270 |
|
272 |
* Fix: Minor bugs fixes.
|
273 |
|
274 |
= 4.8.5 - 03/08/2022 =
|
275 |
+
* Performance optimization and improvements for Google Ads enhanced conversions tracking and Google Aanalytics 4 dashboard loading issue to some users.
|
276 |
* Network site compatibility enabled.
|
277 |
|
278 |
= 4.8.4 - 21/07/2022 =
|
279 |
+
* Fix: Code optimization in terms of Google Ads Conversion Tracking.
|
280 |
|
281 |
= 4.8.3 - 18/07/2022 =
|
282 |
+
* New Feature (PRO) - Improve accuracy of ads Conversion Tracking by enabling Google Ads enhanced conversions. Users can also select the conversion label for specific Conversion Tracking (if any) in Google Ads.
|
283 |
|
284 |
= 4.8.2 - 12/07/2022 =
|
285 |
* NEW: (PRO) You can also track your order refund in Google Analytics GA4 and GA3.
|
309 |
* New: (PRO) Product sync feature now compatible with various Brand plugins like Perfect Brands for WooCommerce, YITH WooCommerce Brands️ and WooCommerce Brands.
|
310 |
|
311 |
= 4.7.0 - 05/04/2022 =
|
312 |
+
* New: Facebook Pixel Conversion Tracking for major ecommerce events like Page view, Add to Cart, Initiate checkout, Purchase, View Content and Search events.
|
313 |
* New: Compatible with Multi Currency plugins like "WOOCS", "CURCY – Multi-Currency for WooCommerce" and "WBW Currency Switcher for WooCommerce"
|
314 |
|
315 |
= 4.6.9 - 21/03/2022 =
|
319 |
* New: In this release, we have add GA4 dashboard with important e-commerce reports.
|
320 |
|
321 |
= 4.6.7 - 11/03/2022 =
|
322 |
+
* Fix: - Fixed the Google Ads converstion tracking issue for some users.
|
323 |
|
324 |
= 4.6.6 - 03/03/2022 =
|
325 |
+
* New: In this release, we have enhanced and optimized in Google Analytics tracking event.
|
326 |
+
* Tweak: Now, the admin user will be able to change the thank you page Conversion Tracking method while setting up the plugin under Google Analytics tab.
|
327 |
+
* Tweak: Plugin will no longer be supported for the WooCommerce versions anything less than 2.8
|
328 |
|
329 |
= 4.6.5 - 16/02/2022 =
|
330 |
* Fix - Fixed :- Onboarding loading issue for some users.
|
398 |
|
399 |
= 4.4.1 - 15/11/2021 =
|
400 |
|
401 |
+
* Earlier, agency owners having multiple Google Analytics accounts associated with a single email id used to face issues in loading all the Google Analytics accounts on the onboarding screen. We have added load more capability in order to provide smooth user experience
|
402 |
|
403 |
= 4.4.0 - 01/11/2021 =
|
404 |
|
429 |
|
430 |
= 4.3.0 - 29/09/2021 =
|
431 |
|
432 |
+
* We have added Campaign performance data in the dashboard. This will allow you to have visibility on your Google Ads campaigns. It will show you clicks, cost, conversions, and sales like important metric for each campaign so that you can take informed decisions to increase your marketing ROI.
|
433 |
|
434 |
* Enhanced Google authentication flow in order to manage expiry of tokens.
|
435 |
|
469 |
|
470 |
= 4.1.1 - 24/08/2021 =
|
471 |
|
472 |
+
* Fixed the issue for fetching Google Ads account for some store
|
473 |
* Fixed WordPress backend stying bug
|
474 |
|
475 |
= 4.1.0 - 24/08/2021 =
|
495 |
|
496 |
* Major enhancements and improvements for product feed sync feature. Now, you will be able to sync unlimited products seamlessly.
|
497 |
|
498 |
+
* Google Analytics tracking optimization - we have optimized the javascript code that will result in faster loading of your websites.
|
499 |
|
500 |
+
* Dynamic Remarketing feature enhancement
|
501 |
|
502 |
* Added advanced trackings for more enhanced data that can be used to better understand user journey and will help you in better retarget and improve the conversion %. (Pro)
|
503 |
|
542 |
|
543 |
= 3.0.2 - 17/03/2021 =
|
544 |
* Product sync feature enhancement - Users can now map upto 25 product attributes which will help them opt for enhanced listing in Google search/Shopping
|
545 |
+
* Auto check on the attributes like id, product title, product description, product link, image link, offer id, price, target country, content language, Google Merchant Center category, sale price, availability, color, size, item_group_id. User does not need to worry about these attributes, the plugin will manage it in the back end when you opt for product syncing
|
546 |
* Variable products are fully supported for 4 attributes - color, size, gender, age group.
|
547 |
* Auto fetch of variable products data while syncing products into merchant center account
|
548 |
* In case the domain claim fails, user can now manually claim website from plugin's interface by visiting Google Shopping tab
|
554 |
* Site speed issue got resolved.
|
555 |
|
556 |
= 3.0 - 08/03/2021 =
|
557 |
+
* We have been working on this release for the last few months and we are happy to announce the release of highly demanded features by you. The major features include stand alone GA 4 tracking, automation of Dynamic Remarketing tags for ecommerce events and complete Google Shopping solution.
|
558 |
+
* With this release users will be able to do stand alone Google Analytics 4 tracking for ecommerce events
|
559 |
+
* ecommerce businesses can now select both universal analytics and Google Analytics 4 properties for ecommerce tracking
|
560 |
+
* Users can now enable Google Ads remarketing tags on all pages
|
561 |
+
* User can opt for Dynamic Remarketing tags automation for all major ecommerce events like view_item_list, view_item, add_to_cart, purchase
|
562 |
+
* We are introducing complete Google Shopping solution that includes Google Merchant Center account management, Google Ads account linking with Google Merchant Center, seamless product sync from WooCommerce store to Google Merchant Center account, smart shopping campaign creation and management, smart shopping campaign reports so that ecommerce businesses can reach millions of shoppers across Google.
|
563 |
+
* The Google Shopping solution is complemented with Dynamic Remarketing tags for ecommerce businesses, so you can instantly start running smart shopping campaigns to re target the users based on the past site behavior
|
564 |
* Automatically verifies site and claims domain for Merchant center approval
|
565 |
* Seamless product sync from WooCommerce store to Google Merchant Center and Opt your product data into programmes, like surfaces across Google (Free listing for Shopping tab under Google Search), Shopping ads, local inventory ads and Shopping Actions, to highlight your products to shoppers across Google.
|
566 |
+
* Create a new Google Ads account using this plugin and get free coupon on the spends you do for first 31 days (Coupon amount depends on the country from which you are creating the Google Ads account)
|
567 |
* Compatibility with WooCommerce 5.0.0
|
568 |
|
569 |
|
573 |
* PHP warnings issue was raised in 2.3.6 by some users that is now resolved in 2.3.6.1.
|
574 |
|
575 |
= 2.3.6 - 22/10/2020 =
|
576 |
+
* No need to manually paste Google Analytics property to start tracking. We have given Google sign in functionality in order to auto fetch Google Analytics property.
|
577 |
+
* Fine tuning for Google Analytics 4 dual set up/ data collection in Google Analytics 4 in order to be future ready for the next generation analytics.
|
578 |
+
* New feature - Now you can link your Google Ads account with Google Analytics property and start passing important data points to Google Analytics from your Google Ads account.
|
579 |
* Compatibility with WooCommerce 4.6.1
|
580 |
* Compatibility with Wordpress 5.5.1
|
581 |
|