Anyway, what's happening is in my component views I use the following:
Code: Select all
global $mainframe;
$breadcrumbs =& $mainframe->getPathWay();
$breadcrumbs->addItem('Customer Center', sefRelToAbs( 'index.php?option=com_clientcenter'));
$breadcrumbs->addItem('Customer Info', '');
What I would really like to do is manually control the breadcrumbs for all of the views in my component, without Joomla adding anything except the Home link... just give me a blank slate and let me add my own pathway how I want it. The wiki docs say you can set the parameters of getPathway(true, false) and that should eliminate the comonent part of the return, but it doesn't actually change anything... even setting getPathway (false, false) gives me back exactly the same thing tho it shouldn't return the home link or the component, according to the docs. There also doesn't seem to be any way to remove an item from the pathway array, only add them.
Can anyone offer any solution? I'm totally happy to manually create my pathway from scratch, home link and all, if that's possible... it's a little thing, but it's frustrating the hell outa me. Thanks in advance!