XF 1.1 How do I create a breadcrumb link?

Carlos

Well-known member
I'm looking to link to a particular page, such as a [wordpress] blog.

In this particular breadcrumb navigation bar [tabs]...
xenbreadlink.webp

And hopefully it does not show a link in node display like this...
xenlink.webp
 
This link does not go to a page on xenforo, it goes to a wordpress blog. I wanted to make it easily accessible via a link on the dark blue breadcrumb. Since you guys call it a tab, I'll go ahead and start calling them tabs.

I wasn't sure what they're called, so now I do. Sorry guys. :oops:
 
You could always just add this to your navigation template:

Code:
<li class="navTab"><a href="http://www.domain.com" class="navLink" target="_blank">Test</a></li>
 
Top Bottom