0

単純な製品だけで属性テキストを取得するにはどうすればよいですか? 構成可能で非表示にしますか?製品ビューのマジェントで。

ありがとう

4

2 に答える 2

2

このコードは任意の場所に配置し、1 回だけ実行する必要があります。このコードを実行した後、削除できます。

 $setup = new Mage_Eav_Model_Entity_Setup('core_setup');

        $setup->addAttribute('catalog_product', 'attributename', array(
            'group'             => 'Geral',
            'label'             => 'Backend label',
            'note'              => '',
            'type'              => 'int',    //backend_type
            'input'             => 'text', //frontend_input
            'frontend_class'    => '',
            'source'            => 'sourcetype/attribute_source_type',
            'backend'           => '',
            'frontend'          => '',
            'global'            => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
            'required'          => true,
            'visible_on_front'  => false,
            'apply_to'          => 'simple',
            'is_configurable'   => false,
            'used_in_product_listing'   => false,
            'sort_order'        => 5,
        ));
于 2012-11-16T18:50:24.270 に答える
1

タイプIDに基づいてview.phtmlで例外を実行しないのはなぜですか?

<?php if($_product->getTypeId() == "configurable"){ ?>
            <div class="product-view"> ... </div>

        <?php  } else { ?> 
            <div class="product-view"> ... </div>
        <?php  } ?>
于 2012-11-16T19:29:42.660 に答える