Skip to content

Instantly share code, notes, and snippets.

@cmcintosh
Created March 16, 2015 00:35
Show Gist options
  • Save cmcintosh/3f7d52792ea597437a17 to your computer and use it in GitHub Desktop.
Save cmcintosh/3f7d52792ea597437a17 to your computer and use it in GitHub Desktop.
<?php
try {
error_reporting(E_ALL);
ini_set('display_errors', '1');
// Load Up Magento Core
define('MAGENTO', realpath('/path/to/magento'));
require_once(MAGENTO . '/app/Mage.php');
$app = Mage::app();
$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToSelect('*')
->addAttributeToFilter('is_anchor', 0)
->addAttributeToFilter('entity_id', array("gt" => 1))
->setOrder('entity_id')
;
foreach($categories as $category) {
echo $category->getId() . "\t" . $category->getName() . "\n";
$category->setIsAnchor(1);
$category->save();
}
print "If your seeing this there were no errors.";
}
catch (Exception $e) {
print "OOOPS! " . $e->getMessage() . "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment