好的,所以我在list.phtml模板中使用下面的代码获得了捆绑产品的最高价格,但是没有添加税,有人可以对此有所了解吗?
<?php
// Get product
$_product = new Mage_Catalog_Model_Product();
$_product->load($product_id);
echo Mage::helper('core')->currency(Mage::helper('tax')->getPrice($_product, $_product->getMaxPrice(), true));
?>
理想情况下,我想获得getPriceHtml($ _ product,true)?&gt;显示价格但返回基本价格为零。我对price.phtml文件所做的任何更改似乎都没有任何影响,这是否表示有一个插件覆盖了它?
答案 0 :(得分:0)
您正在运行哪个版本?您可能遇到过旧的捆绑/分组产品缺陷。 http://www.magentocommerce.com/boards/viewthread/224677/
产品的索引没有税,所以你必须自己添加税,但是如果你改变你的price.phtml没有效果,你要么运行缓存,要么覆盖你的类文件。