Remove Title From Category Page in Magento



Magento displays category title on category listing page by default which has it’s own advantages. But due to some customization requirement, if you are looking to remove title from category page in Magento template, you can do that easily by follow simple and quick steps described in this tutorial.

Just go to

 app/design/frontend/default/theme_folder/template/catalog/category/view.phtml 

file and find following lines of code

<div class="page-title category-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>

Now comment these lines look like below:

<?php /* ?>
<div class="page-title category-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 */ ?>

By this way you can remove title from category page easily and quickly. Hope this tutorial will help you.