Perfect timing on this Q/A. I was looking for the very thing this evening...
Just an added note. If you also wish to remove the Category header (as I did) from the category pages...
In your custom templates/tpl_index_categories.php find:
Code:
<?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
<div id="indexCategoriesMainContent" class="content"><?php
/**
* require the html_define for the index/categories page
*/
include($define_page);
?></div>
<?php } ?>
<?php } else { ?>
<h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1>
-->
<?php } ?>
I'm an admitted noob, but applied Kim-san's method and rem'd the following line from the snippet above:
Code:
<!--
<h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1>
-->
Cheers,