đź“Ť 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.

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

Custom Cart / Direct API

Adobe Commerce / Magento 2

(Adobe acquired the Magento brand in May 2018.)

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

  1. Ensure your ecommerce platform’s product catalog contains related products where relevant.

  2. Reach out to your Customer Success Manager or Bolt’s Support Team to turn on the “Enable fetching add-ons from the cart platform” feature flag for your division.

  3. 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"
      }
    ]
  }
}
Filter by Section
Filter by Topic