¿En Magento como puedo obtener el atributo set name?
obtener atributo set name
Iniciado por
Lucia Gutierrez
, sep 30 2014 03:59
#1 AUTOR PREGUNTA
Preguntas Similares
Esto también te interesa!
#3
Publicado 30 septiembre 2014 - 21:57
Primero debes tener el objeto de un producto para luego acceder a la lista de sus atributos:
$attributeSetModel = Mage::getModel("eav/entity_attribute_set"); $attributeSetModel->load($product->getAttributeSetId()); $attributeSetName = $attributeSetModel->getAttributeSetName();
#4 AUTOR PREGUNTA
Publicado 30 septiembre 2014 - 22:21
Gracias Georg!