Magento -删除产品类型


Magento - Delete Product Type

创建新产品时,选择产品类型和属性组。/我需要删除产品Magento的标准类型,只留下虚拟产品。我想删除简单产品,产品下载,可配置产品。

有人知道我是怎么做的吗?

您需要将Mage_Catalog_Model_Product_Type::getOptionArray()编辑为

static public function getOptionArray()
{
    $options = array();
    foreach(self::getTypes() as $typeId=>$type) {
        if($typeId == 'virtual'):
            $options[$typeId] = Mage::helper('catalog')->__($type['label']);
        endif;
    }
    return $options;
}

希望对你有帮助。

谢谢关于