我想在"规范"中提取品牌和其他属性。根据"产品信息" (目录 - >管理产品 - 然后选择产品)。
我可以通过以下方式获取产品名称:
<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>
我需要类似的东西在前端显示一个Specification属性。
我该怎么做?
谢谢
答案 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)