Critical to understanding drivers of shopping behavior on your website.
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 view_item_list events are properly firing when users view a collection or list of products—such as a category page, search results, or homepage product carousel. This event is key to understanding:
Without this event, it’s hard to assess how product discovery impacts downstream behavior like select_item, view_item, or add_to_cart.
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.
SELECT event_name, param.value.string_value AS list_name, COUNT(*) AS count
FROM `your_dataset.events_*`,
UNNEST(event_params) AS param
WHERE event_name = 'view_item_list'
AND param.key = 'item_list_name'
GROUP BY event_name, list_name
ORDER BY count DESC;
No or low counts for view_item_list? Run our Instant Audit
Or hire a pro to get complete ecommerce funnel visibility.
gtag('event', 'view_item_list', {
items: [
{
item_id: 'SKU_12345',
item_name: 'Running Shoes',
item_list_name: 'Search Results',
item_category: 'Footwear'
},
...
]
});
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!