Pregunta

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!

¿Fue útil?

Solución

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>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top