我是 magento 的新手,我从 magento 后端创建了一种属性语言。通过遵循这一点。客户 > 属性管理器
属性有一个输入类型下拉菜单。
我想在我的前端在 phtml 文件中显示这个以获取用户的输入。
我怎样才能做到这一点。
谢谢
尝试这个
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'language'); //here, "language" is the attribute_code
$allOptions = $attribute->getSource()->getAllOptions(true, true);
foreach ($allOptions as $instance) {
$myArray[$instance['value']] = $instance['label'];
}
print_r(($myArray));