XF 2.2 Hide/remove thread creator user name and thread creation date

MichaelR

Member
On the forum thread list i would like to hide the user name and date so we only see the prefix and thread title. I also want this same change in a search forum. So extra here is the original forum name that i need to hide.
I can't find where i can do this. Anyone know how i can do this?

Forum thread list:
chrome_bmEtDRclYf_LI.webp

Search forum list:
chrome_1fs76ZJYCm_LI.webp
 
Solution
Less:
.structItem-parts>li:nth-child(even) {
    display:none;
}
.structItem-parts .structItem-startDate {
    display:none;
}
Does this work for thread list?

Less:
.structItem-parts {
    display: none;
}
}

Since I don't have a thread list with prefixes on the same line as date/name, I can't really test it out.
 
Does this work for thread list?

Less:
.structItem-parts {
    display: none;
}
}

Since I don't have a thread list with prefixes on the same line as date/name, I can't really test it out.
Thanks you. This last code you send does nothing. Everything stayed the same. The first code you send did the trick but just removed the prefixes too.
 
Top Bottom