我需要有关如何删除Magento最新版本中“Starting at”和“As As As”价格的代码。我们仅使用分组产品和“Grouped Products Pro”扩展以表格格式列出相关产品。
新的“rwd”模板的问题是它在bundle目录中没有price.phtml文件。我看过其他几个论坛都没有用。
帮助!
答案 0 :(得分:0)
班级 Mage_Catalog_Block_Product
方法
public function getPriceHtml($product)
{
$this->setTemplate('catalog/product/price.phtml');
$this->setProduct($product);
return $this->toHtml();
}
将catalog / product / price.phtml设置为模板。
在那里你可以找到你的标签:
<span class="price-label"><?php echo $this->__('Starting at:') ?></span>
和
<span class="label"><?php echo $this->__('As low as:') ?></span>