Product Category Breadcrumbs

When viewing a single product you can get the listing of parent categories by accessing the following variable:

$category_path

 you can use the following smarty code to loop through the category names:

<{foreach from=$category_path key=item item=path }>
 <{$path->getName()|@var_dump}>
<{/foreach}>