magento showing wrong product count in category

前端 未结 3 772
甜味超标
甜味超标 2021-01-02 04:32

I have a strange issue and seems many are having the same on internet. Below picture will define my issue and also my magento version is 1.7

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-02 05:36

    This will fix them all.

    DELETE FROM 
    catalog_category_product 
    where product_id NOT IN (SELECT entity_id FROM (catalog_product_entity)) 
    

    Then, implement the solution in the observer to keep it from happening again.

提交回复
热议问题