XF 2.0 Disable this?

Add this to your extra.less template:

Less:
.structItemContainer > .structItem:first-child {
    display:none
}
.structItemContainer > .structItem {
    border-top:none !important
}
 
Actually, just add the:

Less:
.structItemContainer > .structItem:first-child {
    display:none
}

You'll have to suffer the thicker top border as removing it will remove it from between all the threads.
 
Add this to your extra.less template:

Less:
.structItemContainer > .structItem:first-child {
    display:none
}
.structItemContainer > .structItem {
    border-top:none !important
}
This seems to remove the ability to view the most recent reported post and the most recent conversation. They must use the same css class.
 
This worked for me in case others need it.

Code:
.structItemContainer > .structItem[action*='post-thread']{
   display: none;
}
html:not(.focus-grid) body[data-template="forum_list"] .p-body-pageContent .block-body.block-row{ padding: 12px; }
 
Top Bottom