tuyennn / magento2-outofstockatlast

Magento 2.4.x module Sort Out Of Stock Product At last the product list
GNU General Public License v3.0
55 stars 12 forks source link

Potential solution to module not working with 2.4.6-p1 #44

Closed apresources closed 1 year ago

apresources commented 1 year ago

We had an issue where the module was not working as expected on 2.4.6-p1

We narrowed it down to a Magento module setting the is_sorted_by_oos flag on the Product before the outofstockatlast module, which resulted in the module not applying the required sort

We were able to fix this by adding the following to di.xml to disable the Magento module

    <type name="Magento\Catalog\Model\ResourceModel\Product\Collection">
        <plugin name="outOfStockSorting" type="Magento\InventoryCatalog\Plugin\Catalog\Model\ResourceModel\Product\CollectionPlugin" disabled="true" />
    </type>

Hope that helps someone