Magento – How to remove Category name on list page? have pic

list-viewproduct-list

For example, the category name is SHOES, I do not want to appear on the page

How to remove Category name on list page? Where can I modify? ptml??

enter image description here

Best Answer

it soo simple goto view.phtml at yourmagentodir/app/design/frontend/yourPakcgae/Your Template/template/catalog/category/

Here you have find

<div class="page-title category-title">
   .......
    <h1><?php echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?></h1>
</div>

Just remove this.

Related Topic