How can I move category description from top of the category page to top of the products list so that the sidebar is to the left of category description?
I have this in my app/design/frontend/{Company}/{Theme}/Magento_Catalog/layout/catalog_category_view.xml
<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="category.products" />
</body>
</page>
And this in my app/design/frontend/{Company}/{Theme}/Magento_Catalog/templates/category/products.phtml
<?php echo $block->getChildHtml('category.description'); ?>
<?php if (!$block->isContentMode() || $block->isMixedMode()): ?>
<?php echo $block->getProductListHtml() ?>
<?php endif; ?>