I noticed that the breadcrumbs use the page titles. I was wondering, is it possible to use a page alias instead?
Printable View
I noticed that the breadcrumbs use the page titles. I was wondering, is it possible to use a page alias instead?
I found you can adjust the breadcrumbs with a template (well, duh...). What I did now is truncate the following:
in the foreach loop: (this one:Code:$item['title']
I was wondering, is there a list somewhere of possible values for xyz inCode:<?php foreach ($this->items as $item): ?>
?Code:$item['xyz']
This should list what you need (paste it inside the foreach loop, but outside any other php tags):
It looks like you can't get to the page alias from here, but depending on how your site is configured to rewrite URLs, you maybe can use rtrim($item['href'], '.html') instead of $item['title']... I think... I may get myself into trouble here. :)Code:<pre>
<?php print_r($item); ?>
</pre>
Thanks for the helpful advice! I'm using this now:
That's what I needed.Code:<?php echo $item['link']; ?>