+1 vote
1.7k views
in Magento by
By default, Magento will check the 'Exclude' box for you on all imported images, making them not show up as a thumbnail under the main product image on the product view.

How to mass exclude/include Images in Magento?

1 Answer

0 votes
by

By default, Magento will check the 'Exclude' box for you on all imported images, making them not show up as a thumbnail under the main product image on the product view.

# Mass Include
UPDATE`catalog_product_entity_media_gallery_value` SET `disabled` = '0' WHERE `disabled` = '1';
# Mass Exclude
UPDATE`catalog_product_entity_media_gallery_value` SET `disabled` = '1' WHERE `disabled` = '0';

Related questions

0 votes
1 answer 1.5k views
0 votes
1 answer 782 views
asked Jun 13, 2016 in Magento by Jelena
+1 vote
1 answer 7.5k views
asked Jan 31, 2018 in Magento by Edward121 (260 points)
0 votes
3 answers 2.9k views
0 votes
0 answers 1.1k views
0 votes
1 answer 1.3k views
...