1

I am trying to remove the block which displays all of the current applied filters. Please see image below. Is this done by editing a layout file or via an option in the admin panel? If so how do i it?

enter image description here

Moorby123
  • 81
  • 1
  • 10

1 Answers1

2

Current filter block can be remove from layout

app/code/Amasty/Shopby/view/frontend/layout/catalog_category_view_type_layered.xml

Or by template file :

 app/code/Amasty/Shopby/view/frontend/templates/layer/state.phtml
Ramesh
  • 192
  • 1
  • be careful removing state block in layout file will cause a problem because it is used by its parent block => $this->getChildBlock('state')->getClearUrl(); – lazy_coder Feb 01 '22 at 08:32