I have set up a Top Sellers recommendation at the bottom of this page just above the footer:
https://www.kohler.com/en?attest=245a
The Criteria settings are:
I've downloaded the Recommendation CSV data file to verify that what is shown on the website is correct. The products listed in the data file do not match those on the site. In some cases, some of the first displayed products aren't even in the data file.
I have confirmed the following:
The displayed products are more plausible Top Sellers while the data file is most certainly incorrect.
Should these not match 100%?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Hi @darter ,
One way to troubleshoot shoot Recommendation activities is to leverage debugging tools under Adminstration > Implementation
Also known as Authorization Token.
It can help troubleshoot recommendation activity content delivery by outputting all elements like criteria results and filtering rules or enviornment setup etc.
More details here: https://experienceleague.adobe.com/en/docs/target/using/activities/troubleshoot-activities/content-t...
Also inorder for TopSellers Criteria to work as expected when using Target as criteria data source make sure Mbox params are tracked on order confirmation/thankyou page in below format
<script type="text/javascript">
adobe.target.trackEvent({
"mbox": "orderConfirmPage",
"params":{
"orderId": "ORDER ID FROM YOUR ORDER PAGE",
"orderTotal": "ORDER TOTAL FROM YOUR ORDER PAGE",
"productPurchasedId": "PRODUCT ID FROM YOUR ORDER PAGE, PRODUCT ID2, PRODUCT ID3"
}
});
</script>
Hi @darter ,
One way to troubleshoot shoot Recommendation activities is to leverage debugging tools under Adminstration > Implementation
Also known as Authorization Token.
It can help troubleshoot recommendation activity content delivery by outputting all elements like criteria results and filtering rules or enviornment setup etc.
More details here: https://experienceleague.adobe.com/en/docs/target/using/activities/troubleshoot-activities/content-t...
Also inorder for TopSellers Criteria to work as expected when using Target as criteria data source make sure Mbox params are tracked on order confirmation/thankyou page in below format
<script type="text/javascript">
adobe.target.trackEvent({
"mbox": "orderConfirmPage",
"params":{
"orderId": "ORDER ID FROM YOUR ORDER PAGE",
"orderTotal": "ORDER TOTAL FROM YOUR ORDER PAGE",
"productPurchasedId": "PRODUCT ID FROM YOUR ORDER PAGE, PRODUCT ID2, PRODUCT ID3"
}
});
</script>