Neil E.
Active member
I need to add one more step to the breadcrumb trail. What needs to be done?
Forums, click on any Node Title, breadcrumb shows Category Title.
I want Category Title plus Node Title at this point.
standard navigation code
<xen:navigation>
<xen:breadcrumb source="$nodeBreadCrumbs" />
</xen:navigation>
current modified navigation code (Node Title only shows up when viewing a thread)
<xen:navigation>
<xen:breadcrumb source="$nodeBreadCrumbs" />
<xen:breadcrumb href="{xen:link full:threads, $thread}">{$thread.title}</xen:breadcrumb>
</xen:navigation>
The purpose is to show the node title sooner in the breadcrumb since I am not using a header title when viewing the thread list. Desired result:
Viewing forum list, Breadcrumb = Forums, click on node
Viewing thread list, Breadcrumb = Forums, Category Title, Node Title, click on topic title
Viewing thread, Breadcrumb = Forums, Category Title, Node Title, Topic Title
Forums, click on any Node Title, breadcrumb shows Category Title.
I want Category Title plus Node Title at this point.
standard navigation code
<xen:navigation>
<xen:breadcrumb source="$nodeBreadCrumbs" />
</xen:navigation>
current modified navigation code (Node Title only shows up when viewing a thread)
<xen:navigation>
<xen:breadcrumb source="$nodeBreadCrumbs" />
<xen:breadcrumb href="{xen:link full:threads, $thread}">{$thread.title}</xen:breadcrumb>
</xen:navigation>
The purpose is to show the node title sooner in the breadcrumb since I am not using a header title when viewing the thread list. Desired result:
Viewing forum list, Breadcrumb = Forums, click on node
Viewing thread list, Breadcrumb = Forums, Category Title, Node Title, click on topic title
Viewing thread, Breadcrumb = Forums, Category Title, Node Title, Topic Title