Hi gpullen,
yeah you need to edit the following file "/components/com_virtuemart/views/category/tmpl/default.php" @ line 319 (right at the bottom). Look for :
<?php } elseif ($this->search !==null ) echo JText::_('COM_VIRTUEMART_NO_RESULT').($this->keyword? ' : ('. $this->keyword. ')' : '')
?>
change to :
<?php
} elseif ($this->search !==null ) {
echo JText::_('COM_VIRTUEMART_NO_RESULT').($this->keyword? ' : ('. $this->keyword. ')' : '');
} else {
echo 'CATEGORY EMPTY';
};
?>
I hope this helps.