XF 2.0 How do I remove the sidebar from conversations?

Spartan

Well-known member
I have some running conversations with 75 people. The list on the right is way too long. Can I remove the sidebar in conversations, or prune the list? If so, how?
 
You can add this in your extra.less template
CSS:
[data-template="conversation_view"]
{
    .p-body-sidebar {display: none;}
}

It will remove the sidebar entirely
 
Top Bottom