Magento 2 – Remove Product from Mini Cart Message

magento2mini-cart

Where can I find the following message that appears when you remove an item from the mini cart?

"Are you sure you would like to remove this item from the shopping cart?"

Best Answer

It's located in magento/module-checkout/view/frontend/web/js/view/minicart.js:

Line 71

'confirmMessage': $.mage.__(
    'Are you sure you would like to remove this item from the shopping cart?'
)
Related Topic