Removing breadcrumbs from main cat pages
Okay, I feel lame for not being able to figure this out on my own. I've used clydejones' technique for removing the breadcrumbs from the main page. I'd like to also remove it when in a top category. But, it should display when in one of the subcategories and on the product_info page.
I know I just need to alter the conditional statement, but can't get something to work right. The top categories have a parent_id of 0, but i can't seem to get something like parent_id>0 to work in the conditional.
Now that I think about it, the top cat links lead to the tpl_index_categories page, the subcats lead to the tpl_product_listing page. Not sure if that helps, but I'm confused. 
Here's the code to remove it from the main page:
Code:
<!-- REMOVING Breadcrumbs on main page-->
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' && ($current_page!='index' || (int)$cPath>0 )) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
Currently using ZEN CART v. 1.3.6