Skip to content

Instantly share code, notes, and snippets.

@DavaGordon
Created November 23, 2016 21:01
Show Gist options
  • Save DavaGordon/9d08d493d9b885ddbe5c08b1950216d9 to your computer and use it in GitHub Desktop.
Save DavaGordon/9d08d493d9b885ddbe5c08b1950216d9 to your computer and use it in GitHub Desktop.
Delete All Product Images In Magento 1.x
<?php
require_once 'app/Mage.php';
Mage::app();
Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
$products = Mage::getModel('catalog/product')->getCollection();
//->addAttributeToFilter('entity_id', array('gt' => 14000));
$mediaApi = Mage::getModel("catalog/product_attribute_media_api");
foreach($products as $product) {
$prodID = $product->getId();
$_product = Mage::getModel('catalog/product')->load($prodID);
$items = $mediaApi->items($_product->getId());
foreach($items as $item) {
$mediaApi->remove($_product->getId(), $item['file']);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment