我需要为所有产品设置属性属性,例如"用于产品列表",每个产品,而不是全局。 有没有办法实现这种功能?
答案 0 :(得分:0)
获取属性集......
$attributes = Mage::getModel('eav/config')
->getEntityType(Mage_Catalog_Model_Product::ENTITY)
->getAttributeCollection()
->addSetInfo();
foreach ($attributes as $attribute)
{
if ($attribute->getData('used_in_product_listing') == 1)
{
echo "{$attribute->getFrontendLabel()}:\n";
echo "\n";
}
}