To reproduce:
The breadcrumbs will be constructed like:
Home > > Child
The text separator text is ignored, but space for it is left in the breadcrumbs. I believe the text separator menu item should be displayed, but not linkable. It's not uncommon to use those for first level drop down menus where you don't want the menu item itself to be a link.
This has been now solved. I am also waiting for 3.4.5 version.
For those that can't wait for 3.4.5 release, the correction is simple, add echo
before $item->name
diff --git a/modules/mod_breadcrumbs/tmpl/default.php b/modules/mod_breadcrumbs/tmpl/default.php
index b383a6f..cfb5514 100644
--- a/modules/mod_breadcrumbs/tmpl/default.php
+++ b/modules/mod_breadcrumbs/tmpl/default.php
@@ -55,7 +55,7 @@
</a>
<?php else : ?>
<span itemprop="name">
- <?php $item->name; ?>
+ <?php echo $item->name; ?>
</span>
<?php endif; ?>
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-10-05 10:49:03 |
Closed_By | ⇒ | zero24 | |
Rel_Number | ⇒ | 7839 | |
Relation Type | ⇒ | Duplicate of |
Set to "closed" on behalf of @zero24 by The JTracker Application at issues.joomla.org/joomla-cms/8011
Category | ⇒ | Front End |
Labels |
Added:
?
|
This code was not added to 3.4.5?
RE: 3.4.5 release
This release only contains the security fixes; no other changes have been made compared to the Joomla 3.4.4 release.
https://www.joomla.org/announcements/release-news/5634-joomla-3-4-5-released.html
Could you check if the PR #7839 solve the problem?
Thanks