在前端获得特别添加的价格属性

时间:2011-11-17 13:23:49

标签: magento magento-1.5

我在磁控后端添加了零售价格属性作为价格类型。它显示在后端。 我考虑正常价格作为租赁价格。所以我想计算出租和零售之间的百分比差异。所以我试图在前端产品列表页面获得租金价格。但是没有工作。

方法1:

Mage::getModel('catalog/product')
     ->load($_product->getId())
     ->getAttributeText('retail_price');

方法2:

$_product->getAttributeText('retail_price');

两者都没有工作。但是"制造商"作品

$_product->getAttributeText('manufacturer');

什么是错的。我怎么能这样做。帮助我

1 个答案:

答案 0 :(得分:2)

这个适用于我:

$_product->getRetail_price();

在列表页面中,使用:

$_product->getAttributeText('your_attr_code');