質問

How can I remove Magento 2.3.1 minicart content in checkout_cart_index (cart page), but keeping cart header link and counter?

役に立ちましたか?

解決

After all, I've replaced in Magento_Checkout/templates/cart/minicart.phtml :

this row : if ($block->getIsNeedToDisplaySideBar()):

with this: <?php if ($block->getIsNeedToDisplaySideBar() && $block->getRequest()->getFullActionName() !== 'checkout_cart_index'): ?>

Seams to work just fine. Thank you

ライセンス: CC-BY-SA帰属
所属していません magento.stackexchange
scroll top