WC COMPAT 6.8
puntope opened this issue · 1 comments
puntope commented
- Installation
- Activating the plugin doesn't generate errors
- Deactivating the plugin doesn't generate errors
- Settings
-
Settings
link from the WCGA row on the Plugin page or WooCommerce → Integration → Google Analytics - Confirm it loads OK.
- Checking "Use Global Site Tag" hides "Set Domain Name" and "Enable Universal Analytics"
- One or both of "Use Global Site Tag" or "Enable Universal Analytics" shows "Enhanced eCommerce"
- "Enable Enhanced eCommerce" toggles the EEC options.
-
- Global Site tag
- Add a tracking code (valid Global Site Tag format, like
G-28QSQJCS9D
), Select "Use Global Site Tag" and all Tracking Options EXCEPT "Accept Incoming Linker Parameters". - Enable "Enable Enhanced eCommerce" and all sub-options.
- Visit non-store page (NOT AS ADMIN).
- Confirm general gtag scripts:
<script async src="https://www.googletagmanager.com/gtag/js?id=G-28QSQJCS9D">
and
gtag('set', 'developer_id.dOGY3NW', true);
andgtag('config', 'G-28QSQJCS9D', { 'allow_google_signals': true, 'link_attribution': true, 'anonymize_ip': true, 'custom_map': { 'dimension1': 'logged_in' }, 'linker':{ 'domains': [], 'allow_incoming': false, }, 'logged_in': 'no' } );
- Confirm general gtag scripts:
- Visit shop page (with open Network panel and enable "Preserve log")
- Confirm above general gtag scripts
- Confirm multiple
gtag( 'event', 'view_item_list',
and multiplegtag( 'event', 'select_content',
for each product - Confirm single
gtag( 'event', 'add_to_cart',
- In network panel:
- Confirm request to
www.googletagmanager.com/gtag/js?id=G-28QSQJCS9D…
- Confirm one POST request to
google-analytics.com/g/collect
, withen=page_view
and multipleen=view_item_list
in the request payload (Payload tab of network request):
- After clicking on an "Add to cart" button on the shop, confirm the request to
google-analytics.com/g/collect
withen=add_to_cart
- - NOTE: Not currently working, see #208 -
After clicking on an individual product (not a variable product), confirm the request togoogle-analytics.com/g/collect
withen=select_content
- Confirm request to
- Click through to individual product page (not a variable product)
- Confirm general gtags
- Confirm
$( '.single_add_to_cart_button' ).on( 'click', function() { \n gtag( 'event', 'add_to_cart', {
- Confirm
gtag( 'event', 'view_item_list',
andgtag( 'event', 'select_content',
for all related products - Confirm
$( '.add_to_cart_button:not(.product_type_variable, .product_type_grouped)' ).on( 'click', function() { \n gtag( 'event', 'add_to_cart',
- In network panel:
- Confirm request to
www.googletagmanager.com/gtag/js?id=G-28QSQJCS9D…
- Confirm either:
- Multiple requests to
google-analytics.com/g/collect
withen=view_item_list
- And one request to
google-analytics.com/g/collect
withen=view_item
-OR- - One POST request to
google-analytics.com/g/collect
with a payload of oneen=view_item
and multipleen=view_item_list
- Multiple requests to
- After clicking on an "Add to cart" button on the product, confirm the request to
google-analytics.com/g/collect
withen=add_to_cart
(either in the URL or in the "payload")
- Confirm request to
- Go to the cart
- Confirm general gtags
- Confirm
gtag( 'event', 'remove_from_cart', {
- In network panel:
- After removing an item from the cart, confirm the request to
google-analytics.com/g/collect
withen=remove_from_cart
NOTE Not working as of 2022-04-27
- After removing an item from the cart, confirm the request to
- Proceed to checkout
- Place the order
- Confirm general gtags
- Confirm
gtag( 'event', 'purchase', {
with corresponding details - In network panel:
- Confirm the request to
google-analytics.com/g/collect
withen=purchase
- Confirm the request to
- Add a tracking code (valid Global Site Tag format, like
- Universal Analytics
- Return to the WCGA settings page and disable "Use Global Site Tag"
- Make sure "Enable Universal Analytics" is selected.
- Disabled "Enable Enhanced eCommerce".
- Leave the same GA ID (eg,
G-28QSQJCS9D
) - Visit shop page:
- Confirm the code
ga( 'create', 'G-28QSQJCS9D', 'auto' )
is inserted into the page, as well asga('send', 'event', 'Products', 'Add to Cart'
andga( 'send', 'pageview' );
- Confirm the code
- Add an item to the cart
- Confirm the request to
http://www.google-analytics.com/collect
containingea=Add%20to%20Cart
- Confirm the request to
- Click on a product
- Confirm the code
ga( 'create', 'G-28QSQJCS9D', 'auto' )
is inserted into the page - Confirm
ga('send', 'event', 'Products',…
for.single_add_to_cart_button
and foradd_to_cart_button:not(…
- Confirm
ga( 'send', 'pageview' );
- Confirm the code
- On cart and checkout
- Confirm the code
ga( 'create', 'G-28QSQJCS9D', 'auto' )
is inserted into the page, as well asga('send', 'event', 'Products',…
andga( 'send', 'pageview' );
- Confirm the code
- After completing checkout,
- Confirm the code
ga('ecommerce:addTransaction',…
,ga('ecommerce:addItem',…
(for each item in the cart), andga('ecommerce:send')
is inserted into the page - Confirm the requests to
http://www.google-analytics.com/collect
, one witht=transaction
, on or more witht=item
(according to number of items in the cart), and one witht=pageview
- Confirm the code
Smoke testing using the WooCommerce Block checkout
- Remove cart item
- View item and select item events from product blocks
puntope commented
Works!