XF 2.2 Exclude threads from Article forums list

Other than moving them to a different forum, you can't.

You can hide them using CSS though:
Less:
.js-threadListItem-123
{
    display: none;
}
 
Top Bottom