Critical to understanding indicators of purchase hesitancy.
Ecommerce
Utility
How powerful is your current implementation?
Behavior
Can you tell what visitors are doing?
A GA4 audit is essential for uncovering missing insights—key data points that organizations don't yet know and can act upon. A well-done audit evaluates both behavioral tracking and traffic attribution, ensuring each is accurate and useful. It also assesses whether the data collected truly supports business decisions and reporting.
This test checks whether remove_from_cart events are firing correctly in GA4 when users remove products from their shopping cart.
While this event isn’t required for core conversion tracking, it adds depth to your understanding of shopping behavior and cart abandonment, including:
Without it, you lose visibility into cart interaction trends and may overestimate user purchase intent.
Our free instant audit tool checks for 90 issues in 90 seconds.
Then gives you a prioritized list of items to tackle.
No cost, no sales call... just free goodness.
In GA4 DebugView, manually remove an item from the cart and check that:
In BigQuery, validate that the event is structured correctly using this query:
SELECT event_name, ep.key, ep.value.string_value
FROM `your_dataset.events_*`, UNNEST(event_params) AS ep
WHERE event_name = 'remove_from_cart'
LIMIT 1000;
Not seeing the event when users abandon carts? Run our Instant Audit
Or hire a pro to implement and QA the event across your cart templates.
gtag('event', 'remove_from_cart', {
currency: 'USD',
value: 59.99,
items: [{
item_id: 'SKU_12345',
item_name: 'Backpack',
quantity: 1
}]
});
Every Google Analytics audit should result in a plan for more insights.
An insight is:
Identify and remove insight blockers. Don't get tempted to track things you can't act on!