Tuesday, 7 January 2014

How to remove all Custom option of all Products in Magento ...


In magento root folder create one custom folder with any name and create index.php file into the custom folder and run this line once

<?php
require_once '../app/Mage.php';
Mage::init();
Mage::getModel('catalog/product_option')->getCollection()->walk('delete');
?>

No comments:

Post a Comment