XF 2.2 How do you get to the Latest Post of an article?

beerForo

Well-known member
(This has bugged me since articles started)

How do you get to the latest post from forum view? Not the first unread, the latest. Where do you click below?

1700294507219.png
 
Last edited:
You could edit the template post_article_macros

After

Code:
<li><a href="{$link}" class="u-concealed" rel="nofollow"><xf:date time="{$thread.post_date}"/></a></li><li><a href="{$link}" class="u-concealed" rel="nofollow"><xf:date time="{$thread.post_date}"/></a></li>

add

Code:
<li><a href="{{ link('threads/latest', $thread) }}" rel="nofollow"><xf:date time="{$thread.last_post_date}" class="structItem-latestDate" /></a><li>
 
Top Bottom