In such case you need to customize the code. But there is a problem because the patway includes the menu link to download.
see e.g.:
components\com_phocadownload\views\category\view.html.php
line cca 202
Code: Select all
$pathway =& $mainframe->getPathway();
With this code the section will be added:
Code: Select all
if (!empty($section[0]->title)) {
$pathway->addItem($section[0]->title, JRoute::_(PhocaDownloadHelperRoute::getSectionRoute($section[0]->id, $section[0]->alias)));
}
And be aware - section is link to section view but the menu link can be a link to sections view.
Jan