đź“Ť Bolt Help / Dashboard / Checkout Settings / Add-Ons / Cart-based Product Recommendations Cart-based Product Recommendations Leverages your existing product catalog to recommend products to shoppers based on the items already in their cart. Page Contents Click to expand. About Cart-Based Product Recommendations present add-ons within the Bolt Checkout Modal by leveraging the relationships set up in your platform’s product catalog. Shoppers can select and add these up-sells to their cart. Cart-Based Product Recommendations may surface more relevant products to your shoppers than Bolt’s Static Product Recommendations feature. INFO Please note that recommendations featuring variant selections such as size, color, and other attributes are not currently supported. Availability Platform Supported Products BigCommerce Supported for Bolt Managed Checkout. See specific instructions for platform implementation below. Custom Cart / Direct API Supported for Bolt Managed Checkout. See specific instructions for Custom Cart / Direct API implementation below. Adobe Commerce / Magento 2 (Adobe acquired the Magento brand in May 2018.) Supported for Bolt Managed Checkout. See specific instructions for platform implementation below. Salesforce Commerce Cloud SFRA Supported for Bolt Managed Checkout. Bolt allows checkout integrations for site built with SFRA (Salesforce Resource Architecture). Supported for Bolt’s SFRA v2 plugin only. See specific instructions for platform implementation below. Set Up for Platforms Ensure your ecommerce platform’s product catalog contains related products where relevant. Reach out to your Customer Success Manager or Bolt’s Support Team to turn on the “Include Platform Product Recommendations in Add-Ons” feature flag for your division. After the appropriate feature flags have been flipped on, Bolt will retrieve and display your recommended products at checkout. Set Up for Custom Cart Implement the cart.addons event handlers within your codebase. This will return the specific add-ons you would like to display within the Bolt modal. You can find more information in the cart.addons endpoint of our Merchant Callback API. Example { "event": "cart.addons", "status": "success", "data": { "addons": [ { "name": "Blue Hat", "description": " Large blue satin hat with initials embroidered.", "reference": "1123", "image_url": "https://boltswagstore.com/inventory/hats/red-hat.png", "amount": 15000, "currency": "USD", "product_page_url": "string" } ] } }