Magento捆绑价格未显示在列表页面中

时间:2013-03-17 12:00:57

标签: magento magento-1.7

我正在使用Magento 1.7.0.2,当然我发现捆绑定价没有出现在产品的列表页面中。

有什么快速解决方法吗?任何帮助将受到高度赞赏。

由于

2 个答案:

答案 0 :(得分:0)

我只想对它进行大量的猜测并说如果你要添加一个自定义的块,你可能需要像这样添加Price动作钩子:

<reference name="content">
   <block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml" after="cms_page">
      <action method="addPriceBlockType">
        <type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template>
      </action>
   </block>
</reference>

答案 1 :(得分:0)

我刚刚找到了解决捆绑定价问题的解决方案在类别页面中无法正确显示的问题:http://www.magentocommerce.com/boards/viewthread/224677/

我希望它会有所帮助。

谢谢, ç

相关问题