In the category default.php file, I inserted the following code right below "<div id="phoca-dl-category-box">"
Code: Select all
echo '<div style="margin-left:10px;"><a href="' . JRoute::_(PhocaDownloadHelperRoute::getSectionsRoute()) . '">'. $this->params->get('page_title').'</a> » <a href="'. JRoute::_(PhocaDownloadHelperRoute::getSectionRoute($this->section[0]->id, $this->section[0]->alias)).'">';
echo $this->section[0]->title;
echo '</a> » <a href="' . JRoute::_(PhocaDownloadHelperRoute::getCategoryRoute($this->category[0]->id, $this->category[0]->alias, $this->category[0]->sectionid)) . '">';
echo $this->category[0]->title;
echo '</a></div>';
