Tracking PromoTile Selections From Different Pages
PromoTile Selection on the Search Result Page
This event tracks when a Shopper clicked on a PromoTile in search results page
- Ensure the SmartCollectionPerformed\SearchPerformed event is fired before tracking PromoTile clicks. (with promoTiles data)
window.FastSimonSDK.event({
eventName: window.FastSimonEventName.SerpPromoTileClicked,
data: {
query: "dog", // (Required)
productID: "11223344", // (Required)
position: 5, // counted from 1
imageID: "sada1231abc", // if using image optimization it will be included in the response
link:"https://site.com/promitile-link", //link of the turbolink
thumbnail:"https://plus.unsplash.com/premium_photo-1694819488591-a43907d1c5cc?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y3V0ZSUyMGRvZ3xlbnwwfHwwfHx8MA%3D%3D" //thumbnail of the turbolink
}
});
PromoTile Selection on the Collection Page
This event tracks when a Shopper clicked on a PromoTile in a collection page
window.FastSimonSDK.event({
eventName: window.FastSimonEventName.CollectionPromoTileClicked,
data: {
collectionID: "234234", // (Required)
productID: "11223344", // (Required)
position: 5, // counted from 1
query: undefined, // Default = Collection_Name
imageID:"sada1231abc", // if using image optimization it will be included in the response
link:"https://site.com/promitile-link", //link of the turbolink
thumbnail:"https://plus.unsplash.com/premium_photo-1694819488591-a43907d1c5cc?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y3V0ZSUyMGRvZ3xlbnwwfHwwfHx8MA%3D%3D" //thumbnail of the turbolink
}
});