XF 1.4 How can I show the thread title above a post?

mfman

Member
I would like the title of a thread to show either above each post, or at least at the top of a discussion on eachpage above the first post like most other forums have. Is this possible?
 
Last edited:
Thank you for the reply to my post.

For some reason, the thread title is not showing up in the breadcrumb. If I could get that to work, that would be great. Is there a switch I can toggle or something :)
 
Last edited:
It's an issue with your custom style.

It could be due to an edited template, css, or a style property.

If it is a third party style, contacting the designer would be the best option.
 
Ok, I got it to work. I followed the advice of an older post here in this forum. Here is what I did...I went into the thread_view template and replaced:

Code:
<xen:navigation>
    <xen:breadcrumb source="$nodeBreadCrumbs" />
</xen:navigation>

with
Code:
<xen:navigation>
    <xen:breadcrumb source="$nodeBreadCrumbs" />
    <xen:breadcrumb href="{xen:link full:threads, $thread}">{$thread.title}</xen:breadcrumb>
</xen:navigation>
 
Top Bottom