Hola ¿Alguien podría ayudarme con esto?
Creé un conjunto de atributos personalizados y un atributo personalizado como
$installer = $this;
/* @var $installer Mage_Eav_Model_Entity_Setup */
$installer->startSetup();
//Create Attribute set with Based on Default attribute set
//$installer->removeAttributeSet(Mage_Catalog_Model_Product::ENTITY, 'New Attr Set');
/*
$skeletonID=$installer->getAttributeSetId('catalog_product','Default');
$entityTypeId = Mage::getModel('catalog/product')
->getResource()
->getEntityType()
->getId(); //product entity type
$attributeSet = Mage::getModel('eav/entity_attribute_set')
->setEntityTypeId($entityTypeId)
->setAttributeSetName("New Attr Set");
$attributeSet->validate();
$attributeSet->save();
$attributeSet->initFromSkeleton($skeletonID)->save();
//Create attribute new_attr
//$installer->removeAttribute('catalog_product', 'new_attr');
$data= array (
'attribute_set' => 'New Attr Set',
'group' => 'General',
'label' => 'New Attr',
'visible' => true,
'type' => 'int', // multiselect uses comma-sep storage
'input' => 'boolean',
'system' => false,
'required' => false,
'user_defined' => 1,//defaults to false; if true, define a group
'source' => 'eav/entity_attribute_source_boolean',
'default' => 1,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
);
$installer->addAttribute('catalog_product','new_attr',$data);
*/
Este código agrega el atributo 'new_attr' al grupo 'General' y, por lo tanto, el atributo personalizado se muestra en todos los conjuntos de atributos, como 'Predeterminado' también.
Quiero agregar el atributo personalizado 'new_attr' solo al conjunto de atributos personalizados 'Nuevo conjunto de atributos' en el grupo 'General'. ¿Es eso posible?
attributes
product-attribute
custom
attribute-set
custom-attributes
Magento_Newbie
fuente
fuente
Respuestas:
Si, esto es posible.
Primero, configure estas claves en su matriz de datos $ en los siguientes valores para evitar agregar atributos a todos los conjuntos de atributos:
Luego agregue atributo a su conjunto de atributos:
fuente
Mi función para agregar atributo (por código) al conjunto de atributos
fuente