Skip to content

Disable Tax Display on Category Pages

Julian edited this page Jul 15, 2018 · 1 revision

Create the following file within your Theme or Module:

Magento_Catalog\layout\catalog_category_view.xml

And add this content for your File:

    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">`
         <body>
           <referenceBlock name="magesetup.product.price.details" remove="true" />
         </body>
    </page>
Clone this wiki locally