2011-07-15, 12:40 PM
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]](https://camo.mybb.com/ca101252fd026bc34d553cde69ffaac9d5fa9ac4/687474703a2f2f69313138372e70686f746f6275636b65742e636f6d2f616c62756d732f7a3339382f6d61747269782d67616d696e672f436170747572652d342e706e67)
Thanks for your time.
Edit:
Fixed it by changing the following line:
To this:
this edit was in the forumdisplay_thread template
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.
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