$attribute_details = Mage::getSingleton("eav/config")->getAttribute("catalog_product", $code);
$options = $attribute_details->getSource()->getAllOptions(false);
foreach($options as $option){
echo '<p class="question"></p>';
echo '<input type="radio" id="'.$code.$option["value"].'" value="' . $option["value"] .'" class="styled" name=" '. $code . ' " />';
echo '<label for="'.$code.$option["value"].'">';
echo $option["label"];
echo '</label>';
}
有没有办法获得问题前端标签? $ option [value]是1/0,$ option [label]是Yes / No - 我需要得到“问题文本”
答案 0 :(得分:1)
该属性具有frontend_label
值,您可以通过执行以下操作:
echo $attribute_details->getFrontendLabel();
如果我理解你的问题:)