我需要在Magento上为类别添加自定义属性,我已经能够使用:
http://www.atwix.com/magento/add-category-attribute/
但是现在,我想将自定义属性转换为选择框并从外部数据库/模块加载选项。有没有办法具体说明自定义属性可用的选项,以使它们成为dinamic?
感谢。
答案 0 :(得分:0)
您找到了解决方案吗?我在这样的phtml文件中这样做
<?php $categories = Mage::getModel('catalog/category')->getCollection()->addAttributeToSelect('*'); ?>
<?php foreach ($categories as $category): ?>
<?php $customAtt= $category->getCustom_att(); ?>
<?php print_r ($customAtt); ?>
<?php endforeach; ?>
这种方式将填充所有自定义类别属性值。使用您的自定义属性更改getCustom_att()
。
要将其设为选择选项列表,请阅读此https://magento.stackexchange.com/questions/8674/how-to-get-all-custom-category-attribute-values/8692#8692