Adding Breadcrumbs to your pages
Posted: 19 Aug 2011, 21:39
I don't know about you all, but I think this improves usability of the component, and I thought you all might enjoy. Feel free to message with any improvements/thoughts.
In the category default.php file, I inserted the following code right below "<div id="phoca-dl-category-box">"
Hope that helps!
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>';