我正在开发一个website in Magento,默认情况下,它会将类别列为“类别”。然而,我希望改变这一点,改为Breeds。
你有什么建议吗?
谢谢,杰夫
发布于 2012-04-12 23:30:20
在app/design/frontend/default/THEME/template/catalog/layer/view.phtml,中,将第47行替换为:
<dt><?= $this->__($_filter->getName()) == 'Category' ? 'Breeds' : $this->__($_filter->getName()) ?></dt>https://stackoverflow.com/questions/10124976
复制相似问题