Magento(新手查询):我如何显示产品规格属性?

时间:2015-08-05 14:22:47

标签: magento magento-1.9

我想在"规范"中提取品牌和其他属性。根据"产品信息" (目录 - >管理产品 - 然后选择产品)。

我可以通过以下方式获取产品名称:

<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>

我需要类似的东西在前端显示一个Specification属性。

我该怎么做?

谢谢

2 个答案:

答案 0 :(得分:0)

这对我有用:

$_product = $this->getProduct();
$guarantee = Mage::getResourceModel('catalog/product')->getAttributeRawValue($_product->getId(), 'spec_guarantee', 1); // 1 is the store id

echo $guarantee;
// outputs:
// 2 Years Manufacturers Guarantee

答案 1 :(得分:0)

在magento 1.9中,我使用以下代码显示自定义属性。

<?php $_product->getData('takealotlink'); ?>

但是,要确保它显示在前端,您还必须从manage属性设置正确的属性。

enter image description here

要在前端属性中设置的属性是“在产品列表中使用”。见下面的箭头。

enter image description here