Magento 2 Messages – How to Move Success and Error Messages Position

global-messageslayoutmagento2messages

How to move Add to cart success and error message above Add to cart button and not at the top ?

Best Answer

You could do it by the layout. I didn't test it but it should work.

Create catalog_product_view.xml in your theme and add

<?xml version="1.0"?>

<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <move element="page.messages" destination="product.info.form.content" before="product.info.addtocart" />
    </body>
</page>
Related Topic