Move Category Description to the bottom after product list Magento 2

In your theme folder, add a catalog_category_view.xml layout under Magento_Catalog/layout(the complete path should be app/design/frontend/[Company]/[theme_name]/Magento_Catalog/layout/catalog_category_view.xml).

Now you can simply move the description to the bottom with the following:

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <move element="category.description" destination="content.bottom" />
    </body>
</page>

Comments