XF 1.0 New post icon from profile

sparky5693

Active member
Is there a way to add a new post icon for the "postings" listing within profiles... or can you clue me into which template is involved?
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.member_view .searchResult .title.new
{
	font-weight: bold;
}

That will take care of unread threads in the listing. But it doesn't work for unread posts. From what I can tell, an addon is required to enable read markers for posts in that listing, after which the above CSS should work to bold them.
 
The Postings tab in a user's profile shows both thread and post links. This modification only works for thread links, not posts. If the thread is unread then the title will show in bold.

I tested it on my forum and it works.
 
Top Bottom