TIP
At this time, Strikethrough Pricing is only available for merchants using Magento 2 and Custom Carts.
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.
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.