Получить путь страницы
Mage::app()->getRequest()->getOriginalPathInfo()
Проверить на какой странице находишься
<?php
echo $this->getRequest()->getControllerName();
if($this->getRequest()->getControllerName()=='product') {
echo 'product page';}
if($this->getRequest()->getControllerName()=='category'){
echo 'category page';}
?>