Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Breadcrumbs Not Working — Only shows 'Home' link everywhere
I added a breadcrumb to my theme by adding the following in default.master.php, right below the
<div id="Body">
tag:
<?php echo Gdn_Theme::Breadcrumbs(); ?>
It seems to be working, but only 'Home' link is shown on every page. Take a look (notice the un-styled 'Home' link? That's the only thing I see even on the topic page.)
Any help? Am I doing it wrong?
0
Best Answer
-
elpas0 New
try this
<div id="Breadcrumbs"><?php echo Gdn_Theme::Breadcrumbs( $this->Data('Breadcrumbs') ) ?></div>
7
Answers
try this
<div id="Breadcrumbs"><?php echo Gdn_Theme::Breadcrumbs( $this->Data('Breadcrumbs') ) ?></div>
@epas0 Thanks for that, exactly what I was looking for!