Preciso adicionar à categoria um atributo personalizado, um select com 2 valores:
- 0 - "Não"
- 1 - "sim"
Criei um módulo e usei esse código no arquivo de instalação:
$this->startSetup();
$this->addAttribute('catalog_category', 'top_brand', array(
'group' => 'General',
'type' => 'int',//can be int, varchar, decimal, text, datetime
'backend' => '',
'frontend_input' => '',
'frontend' => '',
'label' => 'Top Hersteller',
'input' => 'select', //text, textarea, select, file, image, multilselect
'option' => array(
'value' => array(
'optionone'=> array(
0 =>'No'),
'optiontwo'=> array(
0 =>'Yes')
),
),
'default' => array(0),
'class' => '',
// 'source' => '',//this is necessary for select and multilelect, for the rest leave it blank
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,//scope can be SCOPE_STORE or SCOPE_GLOBAL or SCOPE_WEBSITE
'visible' => true,
'frontend_class' => '',
'required' => false,//or true
'user_defined' => true,
'default' => '',
'position' => 100,//any number will do
));
$this->endSetup();
O atributo aparece no painel de administração, mas o valor adicionado em selecionar "Não" é 3 e "Sim" é 4. Como criar os valores 0 e 1?
magento-1.7
user4157
fonte
fonte
Respostas:
Tente o seguinte:
Eu adicionei
eav/entity_attribute_source_boolean
comosource
para o seu atributo.fonte
eav/entity_attribute_source_boolean
funcionará para a opção de seleção múltipla?Yes/No
.Tente usar o código abaixo para criar o atributo top_brand na categoria:
fonte
Para adicionar o atributo yes / no personalizado na seção de categoria, crie o módulo e digite o código a seguir.
Por favor, consulte o meu tutorial também.
Atributo http://www.pearlbells.co.uk/how-to-add-custom-attribute-dropdown-to-category-section-magento/ (yes / no)
http://www.pearlbells.co.uk/how-to-add-custom-dropdown-attribute-to-magento-category-section/ (opções personalizadas)
fonte