Skip to content

Instantly share code, notes, and snippets.

@Modicrumb
Created June 11, 2013 20:33
Show Gist options
  • Save Modicrumb/5760387 to your computer and use it in GitHub Desktop.
Save Modicrumb/5760387 to your computer and use it in GitHub Desktop.
<?php
//grab the category
$category = Mage::registry('current_category');
//if category exists see if it is a parent category
if ($category)
{
$category = $category;
if ($category->getParentId() && $category->getParentId() != 2)
{
$category = $category->getParentId()->getName();
}
}
else
{
$category = "Equipment";
}
var_dump($category);
echo $category;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment