Magento 2 – Removing Category Image and Description from XML File

categorycategory-viewmagento-2.1magento2

I am working on a Magento 2.1.7 shop and I have created a child-theme of Magento Blank.

I need to eliminate the category image and description, more exactly the <div class="category-view"><!-- More code here --></div> element from the category page.

The file to edit, if I am not wrong, is app/design/frontend/Company_Name/Theme_Name/Magento_Catalog/layout/catalog_category_view.xml.

What is the piece of code I have to edit in order to eliminate the category image and description?

Thank you!

Best Answer

Try adding below code in your

app/design/frontend/Company_Name/Theme_Name/Magento_Catalog/layout/catalog_category_view.xml

<referenceBlock name="category.image" remove="true"/>
<referenceBlock name="category.description" remove="true"/>