Question

I need to place a custom block below the cart table on the cart page in magento 2. At the moment I'm only able to place it above, so it's displayed above the table AND the cart summary sidebar.

Where to place the block

Any advice? Thanks!

Was it helpful?

Solution

add Below in your custom checkout_cart_index.xml layout file.

app/design/frontend/ThemeVendor/ThemeName/Magento_Checkout/layout/checkout_cart_index.xml

   <referenceContainer name="checkout.cart.container">
        <block class="Vendor\Module\Block\Cart\Your\Block" name="custom.block" template="Magento_Checkout::cart/test.phtml" after="checkout.cart.form" />
    </referenceContainer>
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top