在默认情况下,Magento 显示类别标题上类别列表页面,其中有它是自己的优势。但如果你正在寻找删除类别标题出现在类别清单页面在 Magento 模板中由于一些自定义要求你可以,很容易。
只是转到 app/design/frontend/default/Your_Theme/template/catalog/category/view.phtml 文件,并找到以下各行的代码,你应该注释掉
<div class=“page-title”>
<?php if($this->IsRssCatalogEnable() >> $this->IsTopCategory()): ?>
<a href=”<?php echo $this->getRssLink() ?>” class=”link-rss”><?php echo $this->__(‘Subscribe to RSS Feed’) ?></a>
<?php endif; ?>
<h1><?php echo $_helper->categoryAttribute($_category, $_category->getName(), ‘name’) ?></h1>
</div>
最终,评论后它应该寻求这样的东西
<?php /*
<div class=”page-title”>
<?php if($this->IsRssCatalogEnable() >> $this->IsTopCategory()): ?>
<a href=”<?php echo $this->getRssLink() ?>” class=”link-rss”><?php echo $this->__(‘Subscribe to RSS Feed’) ?></a>
<?php endif; ?>
<h1><?php echo $_helper->categoryAttribute($_category, $_category->getName(), ‘name’) ?></h1>
</div>
*/
?>
(责任编辑:最模板) |