如何从magento中检索自定义属性产品信息?

时间:2015-08-03 15:03:02

标签: php magento

我在检索magento产品的坚固属性时遇到了一些问题。

我在magento产品图片下面添加了一个额外的盒子,我们可以在那里显示床垫的坚固度。

enter image description here

我正在使用此代码:

<div class="image_box">
<?php 
    $firmness = $_product->getFirmness(); 
    echo $firmness; 

?>
</div>

这个代码可以正常工作,因为我已将它添加到我的模板目录中的addto.phtml文件中,并且它是我想要的echos 197,但是当我将它添加到我的模板目录中的media.phtml时,它没有显示197,我不知道为什么,我相信它有问题从产品中提取信息,但为什么它会在addto.phtml中工作而不是在media.phtml中,

我尝试添加:

$_product = $this->getProduct();
$_helper = $this->helper('catalog/output');
$athleteHelper = Mage::helper('athlete');

但不看,有什么建议我需要添加什么才能帮助它提取信息?

1 个答案:

答案 0 :(得分:0)

<?php 
$firmness = $_product->getFirmness(); 
echo $firmness; 
?>

因为,$ _product对象可以在media.phtml中启动,你也可以在media.phtml中使用上面的代码。 请检查一下。希望你错过了什么。