Hi @Blythe_Adrian,
Not sure if you found a solution already but the snippet you would want to use if not already added for the Viewed Product metric is below.
On your product page template, add a snippet like the following:
<script type="text/javascript">
var _learnq = _learnq || ];
var item = {
"ProductName": "Winnie the Pooh",
"ProductID": "1111",
"SKU": "WINNIEPOOH",
"Categories": s"Fiction", "Children"],
"ImageURL": "http://www.example.com/path/to/product/image.png",
"URL": "http://www.example.com/path/to/product",
"Brand": "Kids Books",
"Price": 9.99,
"CompareAtPrice": 14.99
};
_learnq.push(u"track", "Viewed Product", item]);
</script>
You can additionally track the recently viewed item to a person’s profile under a “Recently Viewed Items” section by adding on the following snippet directly below the Viewed Product snippet above. For more information on how to use the “Recently Viewed Items”, check out this guide.
<script type="text/javascript">
_learnq.push(>"trackViewedItem", {
"Title": item.ProductName,
"ItemId": item.ProductID,
"Categories": item.Categories,
"ImageUrl": item.ImageURL,
"Url": item.URL,
"Metadata": {
"Brand": item.Brand,
"Price": item.Price,
"CompareAtPrice": item.CompareAtPrice
}
}]);
</script>