They can either go back and hit the button, or scroll away to find where they last read up to.
If you wish therefore for your users to be able to click on the subject and go to the first unread post, then make this simple change. I have also bolded the subject of unread posts as this is also rather weak.
Okay on to the changes required.... (this is for the default skin - but should apply to any skin)
1) Go to ACP ---> Look & Feel
2) Click on the skin marked IP.Board
3) On the left of the main part of the screen the Global Templates subsection will have automatically opened (or should have) - you can close this by clicking on Global Templates
3) Scroll down on the left until you see Forum View. Click on Forum View to open up the sub-menu. Click on forumIndexTemplate to open that on the right.
4) The forumIndexTemplate will now open for you.
5) Find the following code (just below <!-- SKINNOTE: This is the link for the attachments popup --> about half way down)
<if test="istracking:|:! empty($data['trackingTopic'])">{parse replacement="watch_small"}</if>
<a id="tid-link-{$data['tid']}" href="{parse url="showtopic={$data['tid']}" base="public" template="showtopic" seotitle="{$data['title_seo']}"}" title='{$this->lang->words['topic_started_on']} {$data['start_date']}' class='topic_title'>{$data['title']}</a>
Change to
<if test="istracking:|:! empty($data['trackingTopic'])">{parse replacement="watch_small"}</if>
<if test="gotonewpost:|:$data['go_new_post'] === true"><b><a id="tid-link-{$data['tid']}" href="{parse url="showtopic={$data['tid']}&view=getnewpost" base="public" template="showtopic" seotitle="{$data['title_seo']}"}" title='{$this->lang->words['first_unread_post']}{$this->lang->words['topic_started_on']} {$data['start_date']}' class='topic_title'><b>{$data['title']}</b></a>
<else />
<a id="tid-link-{$data['tid']}" href="{parse url="showtopic={$data['tid']}" base="public" template="showtopic" seotitle="{$data['title_seo']}"}" title='{$this->lang->words['topic_started_on']} {$data['start_date']}' class='topic_title'>{$data['title']}</a></if>
6) Click on Save.
Your unread posts should now be bold and go to the first unread post, when clicking on the subject.
Note: In some skins (ip.duo for example) - $this->lang->words['topic_started_on']} is showing as 'Topic started on' rather than a language file reference - so in other words the line might be slightly different.













