MyBB Community Forums

Full Version: First Unread Post Icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I will like my First Unread Post Icon to appear After the Thread Title and not before.
Thanks for your help.
admin panel >> templates >> your forum's active theme templates >> Forum Display Templates >> forumdisplay_thread
find code like below
<span>{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>

change like below and save the template
<span>{$prefix}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$gotounread}{$thread['multipage']}</span>
Thanks.
Smile I love MyBB

Oops! It took me a while to notice:
The Topics are not linking anymore. They appear as plain text,
The were previously ok.
(My site is uses modified templates)

Aha! I found where the error is:
If I copy from here and paste on my 'forumdisplay_thread', Spaces appear as: &nbsp;
For example: <a href= appears as: <a &nbsp;href=
I have to manually remove them.