MyBB Community Forums

Full Version: Thread prefix's not showing up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

Trying to get thread prefix's showing up in the custom theme I am using.

It shows in the thread itself but not on thread view or w/e its called :p

Im using the Blue Warez 2.0 theme

If i switch to the def theme it shows up on this screenshot but if i go back to warez 2.0 theme it disappears.

[Image: Capture-4.png]

Thanks for your time.


Edit:

Fixed it by changing the following line:

<span>{$prefix} {$gotounread}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>

To this:

<span>{$thread['threadprefix']}{$gotounread}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>

this edit was in the forumdisplay_thread template