3

在 Magento 产品类型中,我只需要简单产品和组产品。添加新产品时,如何将其隐藏或从产品类型选项中删除?

非常感谢

4

4 回答 4

3

您需要覆盖Mage_Catalog_Model_Product_Type模型类。

在这个调用中有 function static public function getOptionArray()。只需更新此功能。

请按照以下说明进行操作:

在 app\etc\modules\Namespace_producttype.xml 下创建新文件

<Namespace_Producttype>
        <active>true</active>
        <codePool>local</codePool>
    </Namespace_Producttype>

在 app\code\local\Namespace\Producttype\etc\config.xml 下创建新文件

<?xml version="1.0"?>
<config>
    <modules>
        <Namespace_Producttype>
            <version>1.6.1.1</version>
        </Namespace_Producttype>
    </modules>
    <global>
       <models>
            <catalog>
                <rewrite>
                    <product_type>Namespace_Producttype_Model_Product_Type</product_type>
                </rewrite>
            </catalog>            
       </models>
    </global>       
</config>

覆盖模型功能的最后一个文件。app\code\local\Namespace\Producttype\Model\Product\Type.php

<<?php
class Namespace_Producttype_Model_Product_Type extends Mage_Catalog_Model_Product_Type
{
    static public function getOptionArray()
    {
        $options = array();
        foreach(self::getTypes() as $typeId=>$type) {

            if($typeId == 'simple' || $typeId == 'grouped'):
                $options[$typeId] = Mage::helper('catalog')->__($type['label']);
            endif;

        }

        return $options;
    }
}
?>   

希望这会有所帮助!

于 2013-09-22T09:14:29.647 回答
0

有两种方法可以解决这个问题。
方式1:登录到您的管理员帐户。
在那里搜索选项“模块”。
卸载不需要的模块。
如果在这里找不到,请搜索“模板”选项。在那转到“编辑模板”并根据您自己的选择进行编辑。

方式2:转到您的cpanel帐户。转到“主题/模板”文件夹。
根据您自己的选择编辑模板。

于 2013-09-21T18:43:57.683 回答
0

不要从 magento 中删除任何内容,因为更新有问题。最好的解决方案是让您只使用您需要的那些选项。

于 2013-09-21T19:29:14.623 回答
0

您应该能够在没有任何“硬”更改的情况下停用一些。

只有简单的、可配置的、分组的、虚拟产品是核心 magento 目录模块的一部分,其余的都是自己的模块,可以通过进入 app/etc/modules/Mage_Bundle.xml app/etc/modules/Mage_Downloadable.xml 完全停用

并将“活动”从真设置为假。不要忘记在这些更改后清理缓存

如果您使用的是企业版,那么还有礼品卡产品类型

对于其他产品类型:由于无法删除配置节点或以您需要的方式覆盖它们,可能最简单的方法是转到 /app/code/core/Mage/Catalog/etc/config.xml 和像这样评论其他产品类型,magento 的升级可能会恢复这些更改

   <catalog>
        <product>
            <type>
                <simple translate="label" module="catalog">
                    <label>Simple Product</label>
                    <model>catalog/product_type_simple</model>
                    <composite>0</composite>
                    <index_priority>10</index_priority>
                </simple>
                <grouped translate="label" module="catalog">
                    <label>Grouped Product</label>
                    <model>catalog/product_type_grouped</model>
                    <price_model>catalog/product_type_grouped_price</price_model>
                    <composite>1</composite>
                    <allow_product_types>
                        <simple/>
                        <virtual/>
                    </allow_product_types>
                    <index_priority>50</index_priority>
                    <price_indexer>catalog/product_indexer_price_grouped</price_indexer>
                </grouped>
                <!-- 
                <configurable translate="label" module="catalog">
                    <label>Configurable Product</label>
                    <model>catalog/product_type_configurable</model>
                    <price_model>catalog/product_type_configurable_price</price_model>
                    <composite>1</composite>
                    <allow_product_types>
                        <simple/>
                        <virtual/>
                    </allow_product_types>
                    <index_priority>30</index_priority>
                    <price_indexer>catalog/product_indexer_price_configurable</price_indexer>
                </configurable>
                <virtual translate="label" module="catalog">
                    <label>Virtual Product</label>
                    <model>catalog/product_type_virtual</model>
                    <composite>0</composite>
                    <index_priority>20</index_priority>
                </virtual>
                -->
            </type>
于 2013-09-22T14:21:57.030 回答