poelman
Member
Posted 2 years ago #
Hello,
I installed the plugin "Breadcrumb Navigation XT".
Now you can see the navigation of the website in te header.
For example I see:
Navigation: Weblog / Instrumentenverhuur / Klassiek gitaar verhuur
The problem is, why you see here "Weblog"? How can i change this to "home" for example?
Thx!!!!!
madaise
Member
Posted 2 years ago #
Hey poelman, go to the code you placed in your header. Part of the code asks the home title - it's probably default to "weblog".. just change that to your sites name.
Here's what I changed:
//Set the home_title to Blog
$breadcrumb_trail->opt['home_title'] = "Momma Muse";
poelman
Member
Posted 2 years ago #
Nope,
The code I placed there is:
<?php
if (class_exists('breadcrumb_navigation_xt')) {
// new breadcrumb object
$mybreadcrumb = new breadcrumb_navigation_xt;
// Display the breadcrumb
$mybreadcrumb->display();
}
?>
Even when I add:
//Set the home_title to Blog
$breadcrumb_trail->opt['home_title'] = "Momma Muse";
to the code it wil not work.
Thx!