Magento2 Cart – Show Cart Items Total in Header Cart Link

cartmagento2mini-cartquote

I want to display cart items total to my header cart link.

I have get some reference from https://magento.stackexchange.com/ but not any solution work for me.

Some are works but only it will display on cart page header link. It will display on all pages if cache is display. cart total not showing on other pages header link when cache is enable.

Any one have done this. Please help.

Best Answer

You can display cart items sub-total to header minicart link.

Add below code to minicart.phtml to display cart items total

<span data-bind="html: getCartParam('subtotal')"></span>

php bin/magento cache:clean
Related Topic