0
A
回答
2
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'attribute_id');
試試上面的代碼,這意味着檢查在magento中可用的指定屬性的狀態(如果您知道id)。
0
試試這個還有:
$attributes = $product->getAttributes();
foreach ($attributes as $attribute) {
if ($attribute->getIsVisibleOnFront()) {
$value = $attribute->getFrontend()->getValue($product);
// do something with $value here
}
}
+0
這是我自己最近回答的複製粘貼:[獲取magento中所有產品屬性的數組](http://stackoverflow.com/questions/4961117/get-an-array-of-all-a -products-attributes-in-magento/4969074#4969074) - 它甚至不適合這個問題! – clockworkgeek 2011-02-13 19:57:58
3
希望你可以得到大量的信息關於屬性和屬性下面的文章中設置:
http://www.blog.magepsycho.com/playing-with-attribute-set-in-magento/
感謝
相關問題
- 1. Magento:如何獲取屬性集屬性?
- 2. Magento - 如何清理不屬性集中的屬性
- 3. Magento:從沒有產品的屬性集中獲取屬性
- 4. magento get屬性集中的可配置屬性
- 5. Magento:以編程方式從屬性集中刪除屬性
- 6. Magento獲取分配給屬性集的所有屬性列表
- 7. Magento屬性
- 8. Magento塊屬性
- 9. asp.net - 屬性集合屬性
- 10. 以編程方式添加Magento屬性和屬性集
- 11. Magento:創建自定義屬性,設置默認屬性集
- 12. Magento - 已計算產品屬性(屬性)
- 13. magento update屬性1 =屬性2
- 14. Magento將Sub屬性添加到屬性?
- 15. 標題中的Magento屬性
- 16. Magento中的複製屬性
- 17. db中的magento屬性
- 18. Magento中的屬性view.phtml
- 19. Magento中的複雜屬性
- 20. 獲取缺省屬性集中不存在的屬性集的所有屬性
- 21. Magento回聲屬性
- 22. Magento屬性問題
- 23. 更改屬性magento
- 24. Magento新車屬性
- 25. Magento:導出屬性
- 26. Asp.net控件的屬性集合屬性
- 27. 刪除Magento 1.7中的禮物選項屬性默認屬性集
- 28. Magento集合未選擇屬性
- 29. Magento搜索和多個屬性集
- 30. 未在Magento中爲屬性
你可以看到屬性管理員中的產品編輯頁面? – clockworkgeek 2011-02-12 12:37:12