Preconditions
Magento Version : EE 2.1.4
ElasticSuite Version : 2.3.4
Environment : Dev & Prod
Steps to reproduce
- Create an optimizer with "catalog_view_container" as request type
- Check the category on front
Expected result
- The optimzer should be used for the category view request
Actual result
- The optimizer is ignored because the request type for the category view is "quick_search_container"
I personnaly correct this by changing the ItemCollectionProvider of the Layer\Category\Contex virtual type :
<virtualType name="Magento\CatalogSearch\Model\Layer\Category\Context" type="Magento\Catalog\Model\Layer\Category\Context">
<arguments>
<argument name="collectionProvider" xsi:type="object">Magento\CatalogSearch\Model\Layer\Category\ItemCollectionProvider</argument>
</arguments>
</virtualType>
Preconditions
Magento Version : EE 2.1.4
ElasticSuite Version : 2.3.4
Environment : Dev & Prod
Steps to reproduce
Expected result
Actual result
I personnaly correct this by changing the ItemCollectionProvider of the Layer\Category\Contex virtual type :