Magento – How to Add Custom Backorder Message

backordercartlocalisation

How it's possible to change the Backorder cart message???

I'd need to display something like "The product will be available to ship from the 1st of january"

Thx

Best Answer

The string is translated in the Mage_CatalogInventory module as "This product is not available in the requested quantity. %s of the items will be backordered."

You can change it using theme translation or inline translation as described here: Magento - Rename Tax to GST

For the theme translation approach, you need the following line in translate.csv:

"Mage_CatalogInventory::This product is not available in the requested quantity. %s of the items will be backordered.","The product will be available to ship from the 1st of january"
Related Topic