我想在Magento产品页面中显示产品选项值。我试过这段代码:
<?php echo $_product->getAttributeText('color'); ?>
但是选项没有出现。
答案 0 :(得分:0)
如果您在实际的产品视图页面上,可以使用帮助程序来获得所需内容:
echo $_helper->productAttribute($_product, $_product->getColor(), 'color');
或
echo $_helper->productAttribute($_product, $_product->getData('attribute_code'), 'attribute_code');
或者你可以试试这个:
$_product->getResource()->getAttribute('color')->getFrontend()->getValue($_product);
答案 1 :(得分:0)
你可以这个,
<?php $attributeValue = Mage::getModel('catalog/product')->load($_product->getId())->getColor();?>