πŸ“ Bolt Help / Dashboard / Checkout Settings / Strikethrough Pricing
Strikethrough Pricing
How to set up Strikethrough Pricing for Bolt Checkout.

About

With the strikethrough pricing feature, merchants can display the MSRP (manufacturer’s suggested retail price) - the item’s original price - beside the sale price in order to demonstrate how much a shopper saves by purchasing sale items.

Availability

Platform Supported Products

Custom Cart / Direct API

Adobe Commerce / Magento 2

(Adobe acquired the Magento brand in May 2018.)

WooCommerce

Set up Stikethrough Pricing

Custom Cart Setup

To enable strikethrough pricing for Custom Carts, include an msrp value in the cart.items stanza in the body of the Create Order token.

Example request

{
    β€œcart”: {
        "order_reference": "order-12345",
        "cart_url": "https://boltswagstore.com/orders/123456765432",
        "total_amount": 754,
        "currency": "USD",
        "items": [
            {
              "reference": "5",
              "image": "https://placeimg.com/30/30/animals/grayscale",
              "name": "Item5",
              "price": "$5.00",
              "desc": "fifty cents now",
              "sku": "SK-5",
              "msrp": "10.00"
            }
        ]
    }
}

In this example, you can see the msrp amount given as 10.00, where the price is listed as $5.00.

Magento 2 Setup

Merchants using Magneto 2 must manually create a Minimum Advertised Price (MAP). When the MAP exists for a product, the M2 plugin sends the value of the MAP to Bolt.

Consult the Magento 2 documentation to learn how to configure a product’s MAP.

Filter by Section
Filter by Topic