我正在尝试显示购物车图像而不是“我的购物车”-短语。购物车图像上方仅显示购物车中要显示的商品数量。
要更改文本,必须编辑 mage/checkout/block/links.php 和这部分:
public function addCartLink()
{
$parentBlock = $this->getParentBlock();
if ($parentBlock && Mage::helper('core')->isModuleOutputEnabled('Mage_Checkout')) {
$count = $this->getSummaryQty() ? $this->getSummaryQty()
: $this->helper('checkout/cart')->getSummaryCount();
if ($count == 1) {
$text = $this->__('My Cart (%s item)', $count);
} elseif ($count > 0) {
$text = $this->__('My Cart (%s items)', $count);
} else {
$text = $this->__('My Cart (0 items)');
}
至
public function addCartLink()
{
$parentBlock = $this->getParentBlock();
if ($parentBlock && Mage::helper('core')->isModuleOutputEnabled('Mage_Checkout')) {
$count = $this->getSummaryQty() ? $this->getSummaryQty()
: $this->helper('checkout/cart')->getSummaryCount();
if ($count == 1) {
$text = $this->__('</span></span>%s</span></span>', $count);
} elseif ($count > 0) {
$text = $this->__('<span><span>%s</span></span>', $count);
} else {
$text = $this->__('<span><span>0'</span></span>);
}
因此,现在商品编号显示在购物车图像的内部/上方。就像我想要的那样。问题是:通过将鼠标悬停在链接上,它现在显示项目编号前后的跨度跨度标签。
知道如何在那里更改链接标题吗?或者也许有更好的方法在顶部链接中显示购物车图像?