Did it. Here's how.
1) Copy the files from base:
app/design/frontend/base/default/template/catalog/product/list.phtml
app/design/frontend/base/default/template/catalog/product/view.phtml
to your custom design package.
app/design/frontend/mydesignpackage/default/template/catalog/product/list.phtml
app/design/frontend/mydesignpackage/default/template/catalog/product/view.phtml
In list.phtml find the lines (around line 86)
<?php // Grid Mode ?>
<?php $_collectionSize = $_productCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<?php $i=0; foreach ($_productCollection as $_product): ?>
And immediately after, insert the following code:
<?php
//get all categories associated with this product
$categories = $_product->getCategoryIds();
$clearance_category = 134; //clearance category id
if(in_array($clearance_category, $categories)) {
$clearancetag='<div class="clearance-tag">Clearance</div>';
}
else {
$clearancetag='';
}
?>
Further down find the really long line:
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
And insert your variable just before the closing </a> tag:
null, true) ?>" /><?php echo $clearancetag ?></a>
That takes care of the Product grid.
Next To show the Clearance icon in Product View. I'm just going to show it next to the description.
In view.phtml
Find the lines:
<?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
<?php echo $this->getChildHtml('alert_urls') ?>
<?php echo $this->getChildHtml('product_type_data') ?>
<?php echo $this->getTierPriceHtml() ?>
<?php echo $this->getChildHtml('extrahint') ?>
And immediately after paste the code:
<?php
//get all categories associated with this product
$categories = $_product->getCategoryIds();
$clearance_category = 134; //clearance category id
if(in_array($clearance_category, $categories)) {
echo '<div class="clearance-tag">CLEARANCE</div>';
}
?>
I'm sure there are more elegant ways of doing this and hardcoding your category id isn't ideal. But it worked for me and hope it helps others.