Last active
October 11, 2016 17:20
-
-
Save antoinekociuba/62db7fb1b7f925b44abed5ccc0e47911 to your computer and use it in GitHub Desktop.
Magento - Disable configurable products without image, through SQL direct query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE catalog_product_entity_int SET value = 2 | |
WHERE attribute_id = ( | |
SELECT attribute_id FROM eav_attribute WHERE attribute_code = 'status' AND entity_type_id = ( | |
SELECT entity_type_id FROM eav_entity_type WHERE entity_type_code = 'catalog_product' | |
) | |
) | |
AND entity_id IN ( | |
SELECT catalog_product_entity.entity_id | |
FROM catalog_product_entity_media_gallery | |
RIGHT OUTER JOIN catalog_product_entity ON catalog_product_entity.entity_id = catalog_product_entity_media_gallery.entity_id | |
WHERE catalog_product_entity_media_gallery.value is NULL | |
AND catalog_product_entity.type_id = 'configurable' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment