XF 1.4 How to remove index page date of last message

doorfix3r

Member
Hello, i'm a new member of xenforo community and i want to make a small customisation to my forum. I would like to remove the date of the last post of forum in index page, see the image below. Thanks for help.View media item 840
 
Template: node_forum_level_2

Find this and remove everything in red:

Rich (BB code):
<span class="lastThreadMeta">
    <span class="lastThreadUser"><xen:if is="{xen:helper isIgnored, $forum.last_post_user_id}">{xen:phrase ignored_member}<xen:else /><xen:username user="$forum.lastPost" /></xen:if>,</span>
    <xen:datetime time="$forum.lastPost.date" class="muted lastThreadDate" data-latest="{xen:phrase latest}: " />
</span>
 
Sort-of along these lines, how could you make the LastThreadDate a bit more visible on the forum index page? Is there something that can be added to the EXTRA.css to have it show up better?

Something like this perhaps...
Code:
.forum-index-page-template .lastThreadDate
{
color: black;
}
 
Top Bottom