我创建了一个Magento网站,但价格从list.phtml中消失了 这是我的专线:www.smztw.com/radiator.html 为什么?谁能告诉我怎么回来?
非常感谢你
答案 0 :(得分:1)
确保模板中包含以下行:
echo $ this-> getPriceHtml($ _ product,true);
如果你有这个,它应该调用这个文件的方法:
/app/code/core/Mage/Catalog/Block/Product/Abstract.php
这是方法(Magento 1.8):
public function getPriceHtml($product, $displayMinimalPrice = false, $idSuffix = '')
{
$type_id = $product->getTypeId();
if (Mage::helper('catalog')->canApplyMsrp($product)) {
$realPriceHtml = $this->_preparePriceRenderer($type_id)
->setProduct($product)
->setDisplayMinimalPrice($displayMinimalPrice)
->setIdSuffix($idSuffix)
->toHtml();
$product->setAddToCartUrl($this->getAddToCartUrl($product));
$product->setRealPriceHtml($realPriceHtml);
$type_id = $this->_mapRenderer;
}
return $this->_preparePriceRenderer($type_id)
->setProduct($product)
->setDisplayMinimalPrice($displayMinimalPrice)
->setIdSuffix($idSuffix)
->toHtml();
}
问题应该在这里,您可以调试它并找出问题所在。
我希望它有所帮助。